What will be the output of the following C# code?
bool a = true;
bool b = false;
a |= b;
Console.WriteLine(a);
Console.ReadLine();
bool a = true;
bool b = false;
a |= b;
Console.WriteLine(a);
Console.ReadLine();A. 0
B. 1
C. True
D. False
Answer: Option C

Join The Discussion