Distinguish between a continuous loop and a step loop
Java Conditional Stmts
21 Likes
Answer
In a continuous loop, loop control variable is updated by 1 in each iteration whereas in a step loop, loop control variable is updated by a given value (other than 1) in each iteration.