C-18-Q067mediumsingle_mcq
The condition that triggers the continue statement to skip a number is:
The condition that triggers the continue statement to skip a number is:
- a
if num == 0: - b
if num == 4: - c
if num > 4: - d
if num != 4:
ব্যাখ্যা
The program skips only the value 4, so the test must match that exact number with if num == 4:, which then triggers continue.