C-18-Q032mediumsingle_mcq
The keyword used inside an inner while loop to immediately exit it (per the textbook flowchart) is:
The keyword used inside an inner while loop to immediately exit it (per the textbook flowchart) is:
- acontinue
- bpass
- cbreak
- dreturn
ব্যাখ্যা
The break keyword immediately terminates the loop it is in, so it exits the inner while loop at once. continue only skips to the next iteration and does not leave the loop.