Question 1  of   20

What is the result of the following code fragment? int? a = 8, b = null; Console.WriteLine($"{a >= b}, {a <= b}");

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