C-18-Q073mediumsingle_mcq
When a break statement is found inside a loop, the loop:
When a break statement is found inside a loop, the loop:
- aRestarts from its first iteration
- bFinishes its task there and comes out of the loop
- cSkips only one iteration
- dContinues forever
ব্যাখ্যা
A break immediately stops the loop's remaining iterations and transfers control to the code following the loop.