What happens when you put this expression in your code:
int x = 0;
int y = 4 % x;"

a) The code compiles without errors.
b) The code throws a runtime exception.
c) The code assigns 0 to variable y.
d) The code assigns 4 to variable y.