Question 1  of   15

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

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