Question 1  of   15

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

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