PPT Slide
--The term “control variable” refers to the variable whose value is tested to determine if the loop should continue for another iteration or halt.
--For example, variable thisVar, below:
while (thisVar < = SOME_CONSTANT)
--To determine which loop construct is appropriate for a given situation, ask yourself “where does the control variable’s value come from?”
Java Iteration Constructs: When to Use