Programming (Year 11)
Operators
What will be the value of 'x' after the following code executes: x = 10; x += 5; x *= 2;
20
30
15
25