Multiple Choice
Which of the following is true about a 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 and after the loop exists.
C) The body of the loop may not execute at all.
D) It is a post-test loop
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q1: The do...while loop has an exit condition
Q3: If y = 0, how many times
Q4: The loop condition of a while loop
Q5: The control statements in the for loop
Q7: To read data from a file of
Q8: The above code is an example of
Q9: Which of the following is not a
Q10: In the for statement, if the logical
Q11: The following for loop executes 21 times.
Q26: In the case of the sentinel-controlled while