InterviewSolution
Saved Bookmarks
| 1. |
What Is A Nested Loop? |
|
Answer» A NESTED LOOP is a loop that runs within another loop. Put it in another SENSE, you have an inner loop that is inside an OUTER loop. In this scenario, the inner loop is performed a NUMBER of times as specified by the outer loop. For each turn on the outer loop, the inner loop is first performed.
A nested loop is a loop that runs within another loop. Put it in another sense, you have an inner loop that is inside an outer loop. In this scenario, the inner loop is performed a number of times as specified by the outer loop. For each turn on the outer loop, the inner loop is first performed.
|
|