Multiple choice technology

What will be the value of the variable $X in the below expression $x=10*2 / 5 * 2 + 5 * 5

  1. 31

  2. 32

  3. 33

  4. 34

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The expression follows standard operator precedence: multiplication and division are evaluated left to right first (10*2=20, 20/5=4, 4*2=8), then addition (8+25=33). Option A (31) and B (32) are incorrect calculations. Option D (34) would be the result if the final addition used 26 instead of 25.