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
The condition that triggers the break is:
if i == 0:if i == 5:if i > 10:if i < 5:The loop is meant to stop once it reaches 5, so the break is triggered by the test if i == 5:.