Question 1
How can you find the index of the maximum value in a numpy array arr?
Question 2
What is numpy?
Question 3
What is the output of np.array([1, 2, 3]) - np.array([4, 5, 6])?
Question 4
What is the output of np.floor([-1.7, -1.5, -0.2, 0.2, 1.5, 1.7])?
Question 5
What dose the dtype parameter in np.array() function specify?
Question 6
What is the output of np.logical_and([True, False, True], [True, True, False])?
Question 7
What is the output of np.where([True, False, True])?
Question 8
How can you find the index of the first occurrence of a value greater than a specified threshold in a numpy array arr?
Question 9
How can you find the index of the maximum value in each row of a 2D numpy array arr?
Question 10
What is the output of np.linspace(0, 1, 5, endpoint=False)?
Question 11
What does the np.([1, 2, 3] function create?
Question 12
What is the output of np.array([1, 2, 3]) + np.array([4, 5])?
Question 13
What does the np. random.rand(3, 3) function create?
Question 14
What is the output of np.sum([ [0, 1], [0, 5] ], axis=0)?
Question 15
How can you find the inverse of square numpy array arr?
Question 16
How can you find the index of the maximum value in a specific axis of a numpy array arr?
Question 17
What is the primary data structure in numpy?
Question 18
What is the output of np.arange(10)[:, np.newaxis]?
Question 19
What does the axis parameter in numpy functions specify?
Question 20
How can you perform element-wise multiplication of two numpy array a and b?
Question 21
How can you concatenate two numpy arrays a and b along the rows?
Question 22
How can you find the index of the last occurrence of a value greater than or equal to a specified threshold in a numpy array arr?
Question 23
How can you find the cross product of two numpy a and b?
Question 24
How can you find the element-wise maximum of two numpy arrays a and b?
Question 25
How can you find the transpose of a numpy array arr?
Question 26
How can you find the index of the last occurrence of a value less then a specified threshold in a numpy array array arr?
Question 27
What is the output of np. randint(1, 10, (2, 3))?
Question 28
How can you find the square root of each element in a numpy array arr?
Question 29
How can you reshape a 1D array arr with 12 with elements into a 2D array with 4 rows and 3 columns?
Question 30
What is the output of np.clip([-2, -1, 0, 1, 2], -1, 1)?
Question 31
Which of the following is a correct way to import numpy?
Question 32
How can you find the dot product of two numpy array a and b?
Question 33
How can you find the index of the minimum value in a numpy array arr?
Question 34
How can you create a numpy array from a python list?
Question 35
What does the np. unique() function do?
Question 36
What is the output of np.full((2, 2), 7)?
Question 37
What is the output of np.arange (5)?
Question 38
How can you find the index of the first occurrence of a value in a numpy array arr?
Question 39
How can you find the cumulative sum of elements along a specified axis in a numpy array arr?
Question 40
What does the np.zeros((3, 3)) function create?
Question 41
What is the output of np.intersect1d([1, 2, 3], [2, 3, 4])?
Question 42
How can you find the index of the last occurrence of a value in a numpy array arr?
Question 43
How can you calculate the mean of a numpy array arr?
Question 44
What does the np.linspace(0, 10, 5) function create?
Question 45
How can you find the mean of each row in a 2D numpy array arr?
Question 46
What is the output of np.arange(3) .reshape(3, 1) + np.arange(3)?
Question 47
What is the output of np.eye(3)?
Question 48
How can you find the index of the maximum value in a numpy array arr ignoring NaN values?
Question 49
What is the output of np.ones((2, 2)) * 2?
Question 50
How can you find the index of the first occurrence of a value greater than 10 in a numpy array arr?