12) Size of numpy array

What is the size of NumPy array my_array?

3x4
4x3
2
12

my_array = [ [1, 4, 5, 6], [7, 8, 9, 10], [11, 12, 14, 16] ]

my_array = np.ndim([ [1, 4, 5, 6], [7, 8, 9, 10], [11, 12, 14, 16] ])

print(my_array)

my_array = np.shape([ [1, 4, 5, 6], [7, 8, 9, 10], [11, 12, 14, 16] ])

print(my_array)

my_array = np.size([ [1, 4, 5, 6], [7, 8, 9, 10], [11, 12, 14, 16] ])

print(my_array)

my_array = np.array([ [1, 4, 5, 6], [7, 8, 9, 10], [11, 12, 14, 16] ],dtype =np. int64)

print(my_array.dtype)

my_array = np.array([ [1, 4, 5, 6], [7, 8, 9, 10], [11, 12, 14, 16] ])

print(my_array.itemsize)

my output is 8

but answer showing not 8

please help

Is this a part of one of the assessments? If yes, then would request you to post this below that assessment with a screenshot of your code, and the error that you are getting. Thanks.