Multiple choice

Which of the following statements is true?

  1. True and False

  2. False and 5 <= 2 ** 3

  3. 10 ** 2 > 8 % 1 + 95 and 5 % 3 != 5 / 3

  4. True and 5 – (10 % 3) <= (2 - 3) * 5

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Evaluating the expressions: 10**2 (100) > 8%1 (0) + 95 (95) is 100 > 95 (True). 5%3 (2) != 5/3 (1.66) is 2 != 1.66 (True). Since both sides of the 'and' are true, the statement is true.