Direction: Choose the correct option
Q1.
What is NumPy?
Direction: Choose the correct option
Q2.
How do you create a NumPy array from a list?
Direction: Choose the correct option
Q3.
What does `np.arange(5)` produce?
Direction: Choose the correct option
Q4.
How do you get the shape of a NumPy array `a`?
Direction: Choose the correct option
Q5.
What does `np.zeros((2,3))` create?
Direction: Choose the correct option
Q6.
How do you perform element-wise multiplication of two arrays?
Direction: Choose the correct option
Q7.
What is the output of `np.linspace(0, 10, 5)`?
Direction: Choose the correct option
Q8.
How do you compute the mean of a NumPy array?
Direction: Choose the correct option
Q9.
What does `a.reshape(3,4)` do?
Direction: Choose the correct option
Q10.
What is the advantage of NumPy arrays over Python lists?
