Question 1  of   15

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

A. False
B. Error
C. True
D. Null