Problem 29
Which of the following apply to the while loop only? To the do....while loop only? To both? a. It is considered a conditional loop. b. The body of the loop executes at least once. c. The logical expression controlling the loop is evaluated before the loop is entered. d. The body of the loop may not execute at all.
Problem 31
What is the difference between a pretest loop and a posttest loop?
Problem 33
Write an input statement validation loop that prompts the user to enter a number less than 20 or greater than 75
Problem 46
What does a break statement do in a loop?