Direction: Choose the correct option
Q1.
How do you perform element-wise multiplication of two NumPy arrays `a` and `b`?
Direction: Choose the correct option
Q2.
What is the output of `np.sum([1,2,3])`?
Direction: Choose the correct option
Q3.
How do you compute the mean of a NumPy array `a`?
Direction: Choose the correct option
Q4.
What does `np.dot(a,b)` compute for 1D arrays?
Direction: Choose the correct option
Q5.
What is the output of `np.array([1,2]) * 3`?
Direction: Choose the correct option
Q6.
How do you compute the transpose of a 2D NumPy array?
Direction: Choose the correct option
Q7.
What is the output of `np.max([1,5,3])`?
Direction: Choose the correct option
Q8.
How do you compute the standard deviation of a NumPy array?
Direction: Choose the correct option
Q9.
What does `np.cumsum([1,2,3])` produce?
Direction: Choose the correct option
Q10.
How do you perform matrix multiplication (matmul) between two 2D arrays?
