KnowledgeBoat Logo

Computer Applications

Distinguish between a continuous loop and a step loop

Java Conditional Stmts

ICSE

17 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.

Answered By

7 Likes


Related Questions