Computer Science, asked by teody042714timbal, 7 hours ago

16 / 4 <= 7 && 81 % 5 + 3 == 4 * 2

Answers

Answered by MichMich0945
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