DRAFT
LoopTerminatingCondition
Misconception:
The condition of for and while loops describes the terminating case, thus one exits the loop when it becomes true.
Incorrect
For and while loops end when the condition becomes true
Correct
For and while loops end when the condition becomes false
Language
Java