Question 1  of   20

What is the output of the following code snippet? bool a = true; bool b = true; bool c = true; Console.WriteLine((a | b) & c);

A. True
B. False