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