← Back to Question List
C# Code Walkthrough #4
Booleans Print Capitalized
📄 Code
Read carefully — what does this print?1bool result = 10 > 3;2Console.WriteLine(result);
1bool result = 10 > 3;2Console.WriteLine(result);