C-18-Q061mediumsingle_mcq
When the condition associated with continue is false, the compiler:
When the condition associated with continue is false, the compiler:
- aStill executes
continue - bIgnores the
continuestatement and executes the next statement - cRestarts the program
- dThrows an error
ব্যাখ্যা
When the associated condition is false, continue is not triggered, so the program simply proceeds to execute the statement that follows it normally. The loop body completes as usual for that iteration.