Answer: False
== is a comparison operator, it returns boolean values that are True or False
+ operator has higher precedence than the == operator.
So the expression, 4 + 5 == 10 will become 9 == 10 which will return False.
Let’s see some code:
x = 4 + 5 == 10
print("The value of the expression is:",x)
# Output
# The value of the expression is: False