Exam-style question
Try this first
What is the result of the Python 3 expression 4 >= 7?.
- A.True
- B.False
- C.4
- D.7
Model answer
What a good answer should say
- False
Explanation
Why this works
The expression asks whether 4 is greater than or equal to 7. It is neither greater than nor equal to 7, so the result is False.
Common mistake
No common mistake is linked to this question yet.
