Week 4 Practice Questions | Prasnya
Prasnya
Continue with Google
Practice path
Dashboard
Exam
Qualifier / Quiz 1
Go to subject
Programing with python
Go to chapter
Week 4
Question 1
00:00
Est. 2 min
Marks:
+3.00
0.00
Consider the following Python code. How many lines will be printed when this code is executed? ``` for i in range(1, 5): for j in range(1, 5): if j == 3: break if i == 2: continue print(i, j) ```
Integer answer
Medium Difficulty
26 October 2025
Your answer