Question 1  of   20

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

A. True
B. Null
C. False