Multiple Choice
Which of the following is true about a do...while loop?
A) The body of the loop is executed at least once.
B) The logical expression controlling the loop is evaluated before the loop is entered.
C) The body of the loop may not execute at all.
D) It is a pretest loop.
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q33: Control variables are automatically initialized in a
Q34: Which executes immediately after a continue statement
Q35: Which of the following loops is guaranteed
Q36: A while loop is a post-test loop.
Q37: The output of the following Java code
Q39: A break statement is legal in a
Q40: What is the final value of x
Q41: After a break statement executes, the program
Q42: EOF-controlled while loop is another name for
Q43: A loop that continues to execute endlessly