What will be the output of the following C# code? | Question 9

40. What will be the output of the following C# code?

using System;

class Program {
  static void Main(string[] args) {
    Console.WriteLine(true && false);
  }
}
  1. True
  2. False
  3. Error
  4. None

Answer: B) False

Explanation:

Here, we are using the Conditional logical AND operator (&&). It returns true of both of the operands evaluate to true. In the above code, the operands are true, false. Thus, the output will be "False".

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.