Computer Applications
What are looping control structures?
Java Iterative Stmts
7 Likes
Answer
A loop is a set of instructions that is continually repeated until a certain condition is met. Looping control structures refer to certain looping constructs which execute a block of code repeatedly until a certain condition remains true. For example, for loop, while loop, do - while loop etc.
Answered By
4 Likes
Related Questions
State whether the following statement is True or False :
A loop that never terminates is called an empty loop.
State whether the following statement is True or False :
The do-while loop executes at least once even if the condition is false.
What are the essential parts of a looping control structure?
How are these statements different from each other:
(i) break
(ii) continue
(iii) System.exit(0)