Nested loops Flashcards
1
Q
What are nested loops?
A
A loop within a loop.
2
Q
What kind of loops can you nest?
A
Conditional and counted loops.
3
Q
What is break?
A
Break will immediately terminate a loop.
4
Q
What is continue?
A
Continue will skip the current iteration of the loop and start the next iteration.