Question 1  of   15

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

A. True
B. False