C-18-Q071mediumsingle_mcq
The final print('Used continue to skip printing the value 4') runs:
The final print('Used continue to skip printing the value 4') runs:
- aInside the loop on every iteration
- bOnly once after the loop ends
- cNever
- dOnly when the loop is empty
ব্যাখ্যা
That print sits after the loop body, so it executes a single time once all iterations have finished.