Computer Science for IGCSE & O level - Programming (Section 7 - No. 15)

What is the result of `print(10 > 5 and 2 < 1)`?
True
False
Error
None

Explanation

(10 > 5) is True. (2 < 1) is False. True and False is False.

Comments (0)

Advertisement