This operator increments the value of its operand, then uses the value in context. a. prefix increment b. postfix increment c. prefix decrement d. postfix decrement

Respuesta :

Answer:

This operator increments the value of its operand, then uses the value in context:

a. prefix increment

Explanation:

  • The option a is correct as the prefix increment is such a type of increment in which we firstly increment of the operand is done and then we evaluate it.
  • The option b is not correct as the increment is done after the evaluation in post-fix increment.
  • The option c and d are incorrect as these talking about the decrements which is not the case in her situation.