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 lefttoright 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