Multiple Choice
How many times will the following do-while loop be executed? int x = 11;
Do
{
X += 20;
}
While (x <= 100) ;
A) 1
B) 3
C) 4
D) 5
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q34: A loop that repeats a specific number
Q36: Given the following statement, which statement will
Q37: What will be the value of x
Q40: This type of loop allows the user
Q42: A file must always be opened before
Q42: What will be the value of x
Q43: Before entering a loop to compute a
Q50: When the continue statement is encountered in
Q54: What will be the value of x
Q55: The while loop has two important parts: