Question 1  of   20

What is the output of the following code snippet? bool a = Convert.ToBoolean(-3); bool b = Convert.ToBoolean(-2); Console.WriteLine(a & b);

A. False
B. Error
C. True