What will be the value of x after the following code is executed?
int x = 20, y = 30;
while (y < 100)
{
x += y;
y += 20;
}
---------------------
How many times will the following do-while loop be executed?
int x = 9;
do
{
x += 30;
}
while (x <= 200);