Quiz 3!

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

We'll cover the following...
Technical Quiz
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


1 / 7

In the ...