Computer Science, asked by gskotresharssnname, 7 months ago

9. what is the output of (3>5)
&& (2!=4) || (2<6) *
O
True​

Answers

Answered by BrainlyProgrammer
1

Answer:

True

Explanation:

(3>5)&&(2!=4)||(2<6) //False and false makes false

False||True //False or true makes true

True

Answered by anindyaadhikari13
2

Question:-

  • Write the output of the following expression.

Solution:-

Given expression,

(3>5) && (2!=4) || (2<6)

3>5 is false and 2!=4 is true.

false && true is false.

2<6 is true.

false || true is true.

So, result:- true.

Similar questions