C-18-Q082mediumsingle_mcq
The condition that triggers the break is:
The condition that triggers the break is:
- a
if i == 0: - b
if i == 5: - c
if i > 10: - d
if i < 5:
ব্যাখ্যা
The loop is meant to stop once it reaches 5, so the break is triggered by the test if i == 5:.