Quiz 3!

This quiz will test your knowledge of indexing and various array operations.

1

What is the output of the code?

arr = np.array([[[0, 1],
                 [2, 3]],
                [[4, 5],
                 [6, 7]]])

print(arr[1][0][1])
A)

4

B)

5

C)

6

D)

3

Question 1 of 70 attempted

Get hands-on with 1200+ tech skills courses.