All loops are controlled by a boolean expression.
A
Correct answer
Explanation
All loop constructs (for, while, do-while) are fundamentally controlled by boolean expressions that determine when the loop continues or terminates. Even for loops with counters implicitly use a boolean condition. This is a fundamental control flow principle in programming.