Question 14 - Week 5 Practice | Prasnya
Prasnya
Continue with Google
Practice path
Dashboard
Exam
Qualifier / Quiz 1
Go to subject
Programing with python
Go to chapter
Week 5
Question 14
00:00
Est. 2 min
Marks:
+4.00
0.00
What is the output of the following snippet of code? ``` a, b = 8, 28 if a < b: start = b else: start = a end = a * b for x in range(start, end + 1): if (x % a == 0) and (x % b == 0): print(x) break ```
Integer answer
Medium Difficulty
05 June 2022
Your answer