16 / 4 <= 7 && 81 % 5 + 3 == 4 * 2
Answers
Answered by
0
Answer:
False.
Explanation:
- 16 / 4 <= 7 is true ( 4 is smaller than or equal to 7 )
- 81 % 8 == 8 is false ( 81 % 8 returns 1 which is not equal to 8 )
&& Operator
- && operator returns true if both of the operands are either true or false ( are the same ).
- It will return false if any operand is not the same as it's opposite operand.
Example:
true && true or false && false will return true.
true && false or false && true will both return false.
Hope this helps you <3
Similar questions
Biology,
4 hours ago
Physics,
4 hours ago
Biology,
4 hours ago
Social Sciences,
7 hours ago
Science,
8 months ago