Multiple choice int x = 2 * 3 + 4 * 5; What will be the value of x in the sample code? 22 26 46 50 70 Reveal answer Fill a bubble to check yourself B Correct answer Explanation Operator precedence: * has higher precedence than +. So 2*3=6 and 4*5=20, then 6+20=26. The expression is evaluated as (2*3) + (4*5), not 2*(3+4)*5 or left-to-right.