23. In a pretest loop, what initializes the loop condition by providing its first value?
24. The condition in a while loop must evaluate to what type of value?
25. What should you do to a counter variable before it is used the first time in a program?
26. A loop whose instructions are processed indefinitely is referred to as which of the following?
27. In a repetition structure, what is the requirement for repeating the instructions called?
28. What is the correct order of the possible arguments in a for statement?
update, initilization, condition
initialization, condition, update
condition, initialization, update
condition, update, initialization
29. What is a possible result of not including an update read statement in a while loop?
30. Which character is used to separate each clause in a for statement?
31. Although not required, it is good programming practice to mark the end of the loop with a(n) _____.
32. In a pretest loop, what should you include in the loop body to ensure that there is a way to enter the sentinel value after
the loop body instructions are processed the first time?
33. When implementing a loop, where is the assignment statement that updates a counter or accumulator placed?
before the body of a loop