Question 1  of   20

Which of the following expressions is equivalent to the code below? x -= y;

A. y -= x;
B. x = x - y;
C. y = y - x;
D. x = - y;