Computer Science, asked by nitinsmarty, 11 days ago

What will be the result of the following expression?
5 % 2 == 0 || 6/3 == 0 && true && 5 > 2​

Answers

Answered by Anonymous
1

Answer:

5 % 2 gives 1

6/3 gives 2

so, 1 ==0 || 2 == 0 && true && 5 > 2

false || false && true && true

false && true

false

Similar questions