Google News
logo
NumPy - Quiz(MCQ)
Which of the following statement is true in NumPy?
A)
The array object returned by __array_prepare__ is passed to the ufunc for computation.
B)
Many of the built-in functions are implemented in compiled C code
C)
Some ufuncs can take output arguments.
D)
Broadcasting is used throughout NumPy to decide how to handle disparately shaped arrays

Correct Answer : Option (A) :   The array object returned by __array_prepare__ is passed to the ufunc for computation.


Explanation : The array object returned by __array_prepare__ is passed to the ufunc for computation is true

Advertisement