Multiple Choice
What will be the value of x after the following code is executed? int x = 10;
Do
{
X *= 20;
}
While (x > 5) ;
A) 10
B) 200
C) This is an infinite loop.
D) The loop will not be executed, the initial value of x > 5.
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q32: The increment operator is:<br>A) ++<br>B) --<br>C) *=<br>D)
Q33: A loop that executes as long as
Q34: A loop that repeats a specific number
Q36: Given the following statement, which statement will
Q39: How many times will the following do-while
Q40: This type of loop allows the user
Q42: A file must always be opened before
Q42: What will be the value of x
Q50: When the continue statement is encountered in
Q55: The while loop has two important parts: