Multiple Choice
The statements in the body of a do-while loop are executed
A) only if the test condition is initially True.
B) at least once.
C) until the test condition becomes True.
D) until an exit statement is encountered.
E) forever until the user presses the break key.
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q20: A for statement contains three expressions: initialization,
Q21: In order for a C++ program to
Q22: A(n) _ is a variable that controls
Q23: What will the following code print?<br>Num =
Q24: What will the following code print?<br>Num =
Q26: A while loop is somewhat limited because
Q27: The while loop has two important parts:
Q28: The ideal type of loop to use
Q29: A(n) _ is a special value that
Q30: The ideal type of loop to use