Multiple choice technology programming languages

All loops are controlled by a boolean expression.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
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.