Question 1  of   20

What is the output of the following code snippet? bool? a = false, b = null; var v = (a ?? true) | (b ?? false); Console.WriteLine(v);

A. False
B. True