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
ব্যাখ্যা
continue only abandons the current pass and jumps to the next iteration, leaving the loop running, whereas break terminates the loop completely.