Chapter 5: Problem 3
Why are the statements in the body of a loop called conditionally executed statements?
Short Answer
Expert verified
#Short Answer#
The term "conditionally executed statements" refers to the statements within a loop that are executed only when the loop's condition is true. Each time a loop iterates, it checks if the condition is true, and if it is, the statements inside the loop's body are executed again. These statements will not be executed once the condition becomes false, thus making the execution of these statements conditional upon the loop's specified condition.