Question 1  of   20

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

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