What is the value of result after the following code executes?
int a = 60;
int b = 15;
int result = 10;
if (a = b)
result *= 2;
a. 10
b. 120
c. 20
d. 12
e. code will not execute
c. 20
Computer Science & Information Technology