What is the output of this Python program?

print(10 + 2 > 12)

(1 point)
Responses

an error message because the quotation marks are missing

an error message because the quotation marks are missing

10 + 2 > 12

10 + 2 > 12

false

false

true

1 answer

The output of the Python program:

print(10 + 2 > 12)

is:

False

This is because the expression 10 + 2 equals 12, and the comparison 12 > 12 is false.

Thus, the correct response is:

false