Numpy NamePhone Number 1 / 50 NumPy array का data type attribute क्या है? type shape kind dtype 2 / 50 NumPy array का advantage क्या है? Fast computation Vectorized operations All of these Multi-dimensional arrays 3 / 50 NumPy array में unique values निकालने के लिए function कौन सा है? np.unique( ) np.unique() Both A and C unique() 4 / 50 NumPy में array concatenate करने के लिए function कौन सा use होता है? append() join() extend() np.concatenate() 5 / 50 NumPy array के shape बदलने के लिए कौन सा attribute या method use होता है? reshape() None Both A and B resize() 6 / 50 NumPy में array के transpose निकालने के लिए attribute कौन सा है? T transpose() Both A and B None 7 / 50 NumPy में random integer generate करने के लिए कौन सा function use होता है? np.random.rand() np.random.randint( ) np.random.randint() Both B and C 8 / 50 NumPy में 2D array को flatten करने के लिए कौन सा function use होता है? ravel() flatten() Both A and B reshape() 9 / 50 NumPy में diagonal matrix extract करने के लिए function कौन सा है? np.diag(). np.diag() diagonal() Both A and C 10 / 50 NumPy में array copy करने के लिए कौन सा method use होता है? copy() np.copy() clone() duplicate() 11 / 50 NumPy में dot product निकालने के लिए function कौन सा है? np.dot()) multiply() np.dot() Both A and C 12 / 50 NumPy array में element-wise multiplication कैसे किया जाता है? Using * operator Directly using * operator multiply() function Both B and C 13 / 50 NumPy array के standard deviation निकालने के लिए function कौन सा है? std() np.std() Both B and C array.std() 14 / 50 NumPy में array के minimum value के लिए function कौन सा है? min() np.min() array.min() Both B and C 15 / 50 NumPy में array के maximum value के लिए function कौन सा है? max() np.max() array.max() Both B and C 16 / 50 NumPy में array elements के sum निकालने के लिए function कौन सा है? sum() np.sum() array.sum() Both B and C 17 / 50 NumPy में array elements के mean निकालने के लिए function कौन सा है? average() np.mean() np.avg() mean() 18 / 50 NumPy में 1D array को 2D array में convert करने के लिए function कौन सा है? reshape() flatten() Both A and B reshape() 19 / 50 NumPy में array का shape पता करने के लिए attribute कौन सा है? size shape ndim type 20 / 50 NumPy में 2D array create करने का syntax क्या है? np.array([ [1,2],[3,4] ]) Both A and B array([[1,2],[3,4]]) np.array([[1,2],[3,4]]) 21 / 50 NumPy में array का data type change करने के लिए कौन सा method use होता है? dtype() convert() type() astype() 22 / 50 NumPy में 3x3 zero matrix create करने के लिए command क्या है? np.zeros(3,3) zeros(3,3) np.zeros[3,3] np.zeros((3,3)) 23 / 50 NumPy में linspace(start, stop, num) का क्या मतलब है? Random numbers generate करना Ones generate करना Zeros generate करना Start से stop तक evenly spaced numbers create करना 24 / 50 NumPy में arange() function किसलिए use होता है? Random numbers generate करने के लिए Sequence of numbers create करने के लिए Zeros create करने के लिए Ones create करने के लिए 25 / 50 NumPy array create करने के लिए default data type क्या होता है? int float Depends on input complex 26 / 50 NumPy का main advantage क्या है? Fast computation Multi-dimensional arrays Vectorized operations All of these 27 / 50 NumPy array में sorting करने के लिए function कौन सा है? np.sort() np.sort() array.sort() Both B and C 28 / 50 NumPy array में unique elements find करने के लिए function कौन सा है? np.distinct() np.unique() unique() None 29 / 50 NumPy array concatenate करने के लिए कौन सा function use होता है? append() np.concatenate() extend() join() 30 / 50 NumPy array में mathematical functions apply करने के लिए कौन सा module use होता है? math numpy.math numpy (np.sin(), np.cos() etc.) None 31 / 50 NumPy array में broadcasting का मतलब क्या है? Error None Looping Different shapes के arrays पर element-wise operations allow करना 32 / 50 NumPy में 2D array transpose करने के लिए attribute कौन सा है? T transpose() Both A and B None 33 / 50 NumPy array flatten करने के लिए function कौन सा है? reshape(-1) flatten() ravel() Both B and C 34 / 50 NumPy array slicing कैसे किया जाता है? array[start:end] array[start:end:step] slice(array) None 35 / 50 NumPy में array element-wise addition कैसे किया जाता है? Using loops append() Directly using + operator extend() 36 / 50 NumPy में random numbers generate करने के लिए module कौन सा use होता है? random math numpy.random None 37 / 50 NumPy में identity matrix create करने के लिए function कौन सा है? np.identity() Both B and C np.eye() np.identity() 38 / 50 NumPy array को one से initialize करने के लिए function कौन सा है? ones() np..ones() np.ones() array.ones() 39 / 50 NumPy array को zero से initialize करने के लिए कौन सा function use होता है? np.zeros() zeros() np.zeros() array.zeros() 40 / 50 NumPy array को reshape करने के लिए function कौन सा use होता है? resize() reshape() change() modify() 41 / 50 NumPy array के data type को पता करने के लिए attribute कौन सा use होता है? dtype dtype type kind 42 / 50 NumPy array का total elements count पता करने के लिए attribute कौन सा है? ndim dtype shape size 43 / 50 NumPy में array का shape पता करने के लिए attribute कौन सा है? ndim size shape type 44 / 50 NumPy में array का dimension पता करने के लिए कौन सा attribute use होता है? shape ndim size dtype 45 / 50 NumPy array create करने के लिए कौन सा function use होता है? np.array() array() np.array() list() 46 / 50 Python list और NumPy array में main difference क्या है? Array fixed type होता है और fast operations support करता है None Both A and B List flexible type है 47 / 50 NumPy का main data structure क्या है? List Dictionary ndarray (N-dimensional array) Tuple 48 / 50 NumPy को import करने के लिए कौन सा command use होता है? include numpy import numpy as np require numpy import numpy 49 / 50 NumPy library किसके लिए use होती है? Web Development Scientific Computing और Numerical Calculations File Handling None 50 / 50 NumPy का full form क्या है? Numeric Python Numerical Python New Python Number Py Your score isThe average score is 78% 0% Restart quiz