For each of the following expressions, evaluate whether the result is True or False. Write down the result.

1: 5 > 3 and 2 < 4
2: 7 == 8 or 3 <= 3
3: not (10 < 5)
4: (4 != 4) or (6 == 6)
5: not (5 == 5 and 3 > 1)

1 answer

Let's evaluate each expression one by one:

1: 5 > 3 and 2 < 4

  • 5 > 3 is True
  • 2 < 4 is True
  • Therefore, True and True = True

2: 7 == 8 or 3 <= 3

  • 7 == 8 is False
  • 3 <= 3 is True
  • Therefore, False or True = True

3: not (10 < 5)

  • 10 < 5 is False
  • Therefore, not False = True

4: (4 != 4) or (6 == 6)

  • 4 != 4 is False
  • 6 == 6 is True
  • Therefore, False or True = True

5: not (5 == 5 and 3 > 1)

  • 5 == 5 is True
  • 3 > 1 is True
  • Therefore, True and True = True
  • not True = False

In summary:

1: True
2: True
3: True
4: True
5: False