9. what is the output of (3>5)
&& (2!=4) || (2<6) *
O
True
Answers
Answered by
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
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