Chapter 4: Problem 2
What is a condition-controlled loop?
Short Answer
Expert verified
Answer: A condition-controlled loop is a programming construct that repeatedly executes a block of code as long as a specified condition remains true. Once the condition becomes false, the program exits the loop and continues execution after the loop. This is different from count-controlled loops, which execute a predetermined number of times. Examples of condition-controlled loops include 'while' loops and 'do-while' loops in various programming languages, whereas count-controlled loops include 'for' loops.