Respuesta :

Answer:

E

Explanation:

If you follow the line of code and add 1, 2, and then 3, 10 + 1 + 2 + 3 = 16.

fichoh

The output of the block of code will be 16 as the value of the variable is assigned a new value based on the number added to it on each line.

  • The initial value of the variable oop is 10

  • On the next line, 1 is added to oop and the resulting value is reassigned to the same variable, the new value of oop is 11

  • On the next line, 2 is added to oop and the resulting value is reassigned to oop, the new value of oop becomes 13

  • Variable oop is then increased by 3 ; making the value become (13 + 3) = 16

Therefore, the output of the command is 16.

Learn more :https://brainly.com/question/18505492