What will be the result of the following expression?
5 % 2 == 0 || 6/3 == 0 && true && 5 > 2
Answers
Answered by
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
Science,
30 days ago
English,
30 days ago
English,
2 months ago
India Languages,
10 months ago
Science,
10 months ago