lenelex.com
Home
Quizzes
Games
Register
Log in
Question 1 of 20
What is the output of the following code snippet?
bool a = true, b = false; var v = (a | b) ? "Verum" : "Falsum"; Console.WriteLine(v);
A. Falsum
B. Verum
Links:
The OR Operator
Formatting Boolean values
Boolean Data Type