Computer Applications
What is a nested loop?
Java Nested for Loops
28 Likes
Answer
When we use a loop within another loop, it is said to be a nested loop. The inner loop repeats a number of times for each repetition of the outer loop.
Answered By
18 Likes
Related Questions
State whether the following statement is True or False :
Labelled break statement allows the next iteration of the loop from any place of looping structure.
State whether the following statement is True or False :
In a nested loop, break and continue can be used simultaneously.
Write down the syntax of a nested for loop.
What action will you take to terminate an outer loop from the block of an inner loop?