Q. What will be the output of the following C# code?
Code:
using System;
class Program {
static void Main(string[] args) {
Console.WriteLine(true && false);
}
}
β
Correct Answer: (B)
False