Multiple choice technology programming languages

Given the following code, what is the value of RESULT? DName+++++++++++ETDsFrom+++To/L+++IDc.Keywords+++++++++++++ D RESULT S 5 0 CL0N01Factor1+++++++Opcode&ExtExtended-factor2+++++++++++++++++ C EVAL RESULT = (2 + 3 * 2) * 2 / 2

  1. 8

  2. 10

  3. 32

  4. 50

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

Following standard mathematical operator precedence (multiplication and division before addition), the expression evaluates as: 3 * 2 = 6, then 2 + 6 = 8, then 8 * 2 = 16, and finally 16 / 2 = 8.