What does this code print?
a = np.array([[1, 2], [3, 4], [5, 6]]) c = a[(a > 3) & (a < 11)] print(c)
[4 5 6]
[[0,0], [3, 4], [5, 6]]
[False, False, False, True, True, True]
[[3, 4], [5, 6]]