Which of the following statements doubles the value stored in ANSWER
a) answer += 2;
b) answer *= 2;
c) answer = answer * 2;
d) All three of these
e) Both answer *= 2; and answer = answer * 2; but not answer += 2;