Concept Flow - Nested loop execution
Start Outer Loop i=0
Start Inner Loop j=0
Execute Inner Loop Body
Update j = j + 1
Check j < limit?
No→End Inner Loop
Yes
Update i = i + 1
Check i < limit?
No→End Outer Loop
↩Back to Execute Inner Loop Body
The outer loop starts and for each iteration, the inner loop runs completely before the outer loop moves to the next iteration.