Computer Science for IGCSE & O level - Programming (Section 2 - No. 27)

What is the result of the expression `10 > 5 AND 2 < 1`?
True
False
10
5

Explanation

10 > 5 is true, but 2 < 1 is false. True AND False results in False.

Comments (0)

Advertisement