Question 7 - 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 7
00:00
Est. 2 min
Marks:
+3.00
0.00
What is the output of the following snippet of code? ``` c1 = 0 c2 = 0 for x in range(1, 101): for y in range(1, 101): if x + y == 199: c1 = c1 + 1 c2 = c2 + 1 print(c2 // c1) ```
Integer answer
Medium Difficulty
29 October 2023
Your answer