KnowledgeBoat Logo
|

Computer Applications

What do you understand by inter-conversion of loops?

Java Iterative Stmts

105 Likes

Answer

We can convert the repetitive logic written using one type of loop into any of the other 2 types. For example, if some repetitive logic is coded using a for loop, we can convert that for loop into while or do-while loop. This is termed inter-conversion of loops.

Answered By

60 Likes


Related Questions