210,”What will be the value of x after the following code is executed?int x = 10
y = 20;while (y < 100){ x += y; y += 20;}90110130210"
The goto resource for studying materials
210,”What will be the value of x after the following code is executed?int x = 10
y = 20;while (y < 100){ x += y; y += 20;}90110130210"