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. Verum
B. Falsum
Links:
The AND Operator
Formatting Boolean values
Boolean Data Type