Assume the following precedence (high to low) Operators in the same row have the same
precedence:
()
* /
+ Â
AND
OR
For operators with equal precedence, the precedence is from leftÂtoÂright in expression.
What will be the output of the following code statements?
integer a = 50, b = 25, c = 0
print ( a > 45 OR b > 50 AND c > 10 )
a. 1
b. 0
c. Â1
d. 10