MCQOPTIONS
Saved Bookmarks
| 1. |
import numpy as np a = np.array([1, 2, 3], dtype = complex) print a6.Which of the following statement is false? |
| A. | ndarray is also known as the axis array. |
| B. | ndarray.dataitemSize is the buffer containing the actual elements of the array. |
| C. | NumPy main object is the homogeneous multidimensional array |
| D. | In Numpy, dimensions are called axes |
| Answer» B. ndarray.dataitemSize is the buffer containing the actual elements of the array. | |