Report Bug
Qus : The most important object defined in NumPy is an N-dimensional array type called?
QusNumPy में परिभाषित सबसे महत्वपूर्ण एक ऑब्जेक्ट न डायमेंशन ऐरे का प्रकार है जिसे कहा जाता है?

A. ndarray
B. narray
C. nd_array
D. darray


Solution
A. ndarray



Explanation

The most important object defined in NumPy is the N-dimensional array, often referred to as numpy.ndarray. This array is a homogeneous, multidimensional container for elements of the same data type. It provides a powerful and efficient way to store, manipulate, and perform operations on numerical data in Python.




Report Bug