When the following statement is run, what is the data type of the elements in this NumPy array?
import numpy as np
np.array(['ab', False])
<question >
<p>Study the given NumPy array. What is the size of the array found by using the `size` attribute?<br>
<pre><code>
np.array([[1, 2], [3, 4], [5, 6]])
Study the given NumPy array. What is the number of dimensions found by using the `ndim` attribute of the array?
np.array([[1, 2], [3, 4], [5, 6]])
Study the given NumPy array. What is the shape of the array found by using the `shape` attribute?
np.array([[1, 2], [3, 4], [5, 6]])
Exercise
More Exercises: https://www.w3resource.com/python-exercises/numpy/basic/index.php