Question: Give a memory snapshot each statement is executed. Assuming that x is equal to 4 and that y is equal to 6 before the statement is executed. Also, assume that all the variables are integers.
a. z=x-- * y
b. z=--x + y
c. x %= y
d.y += 5
e. x /= 3
Can you show the memory snapshot of the each statement.