Question 9 - Week 7 Practice | Prasnya
Prasnya
Continue with Google
Practice path
Dashboard
Exam
Qualifier / Quiz 1
Go to subject
Programing with python
Go to chapter
Week 7
Question 9
00:00
Est. 2 min
Marks:
+4.00
0.00
What is the output of the following snippet of code? ``` p = 1 M = [[1, 3, 4], [2, -1, 3], [-2, 1, 2]] m = len(M) n = len(M[0]) for i in range(m): for j in range(n): p = p * M[i][j] print(p) ```
Integer answer
Medium Difficulty
29 October 2023
Your answer