Q10Numerical3 Marks27 Oct 2024
What will be the output of the following code snippet? Enter an integer as your answer.
```
result = 0
for i in range(1, 15):
if i % 2 == 0:
continue
elif i % 5 == 0:
break
result += i
print(result)
```
Press Enter to check.