Computer Science, asked by rp1900991, 6 hours ago


What will be the output of 19!=19 a. True b. False C. Error d. None of the ​

Answers

Answered by MichMich0945
0

Answer:

b. False.

Explanation:

It will be false because 19 is equal to 19 and the != operator checks if both of the operands are equal and returns the result.

Example:

  • 12 != 21 -> returns true because 12 is not equal to 21; while
  • 9 != 9 -> returns false because 9 is equal to 9.

Hope this helps you!

Similar questions