C-18-Q064mediumsingle_mcq
The difference between continue and break is that:
The difference between continue and break is that:
- aBoth exit the loop
- b
continueskips one iteration;breakexits the loop entirely - c
continueexits the loop;breakskips one iteration - dThey are identical