Question 1
What does the np.zeros((3, 3)) function do?
Question 2
Which function is used to create an array with evenly spaced values within a given interval?
Question 3
Which of the following is NOT a correct way to create a Numpy array?
Question 4
Which function can be used to stack arrays vertically?
Question 5
How can you create a 3x3 array filled with random values between 0 and 1?
Question 6
What is the result of the following operation: np.array([1, 2, 3]) + np.array([4, 5, 6])?
Question 7
Which function can be used to reshape an existing array into a different shape?
Question 8
What does the function np.full((2, 2), 7) do?
Question 9
Which function is used to create an identity matrix in NumPy?
Question 10
What does the function np.linspace(0, 10, 5) do?