Computer Applications
What are looping control structures?
Java Iterative Stmts
1 Like
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
1 Like
Related Questions
How are these statements different from each other:
(i) break
(ii) continue
(iii) System.exit(0)
Identify all the errors in the following repetitive statements.
while (z < 1 && z > 100) { a = b; }
What are the essential parts of a looping control structure?
Identify all the errors in the following repetitive statements.
for (int i = 5; i > 0; i++) { System.out.println("Java"); }