Solved

The Do Loop Differs from the While Loop in That

Question 3

Multiple Choice

The do loop differs from the while loop in that


A) the while loop will always execute the body of the loop at least once
B) the do loop will always execute the body of the loop at least once
C) the do loop will continue to loop while the condition in its while statement is false and the while loop will continue to loop while the condition in its while statement is true
D) the while loop will continue to loop while the condition in its while statement is false and the do loop will continue to loop while the condition in its while statement is true
E) None of these; there is no difference between the two types of loops

Correct Answer:

verifed

Verified

Related Questions