Important Notice:
NumPy Basic in Python
1 / 75
Correct syntax of the reshape() function in Numpy array python isNumpy array python में reshape() फ़ंक्शन का सही सिंटैक्स है
2 / 75
What is fortran order in numpy?numpy में fortran ऑर्डर क्या है?
3 / 75
Methods for Boolean in numpy arraynumpy array में बूलियन के लिए विधियाँ
4 / 75
what are the attributes of numpy array?numpy array की विशेषताएँ क्या हैं?
5 / 75
Regarding creating ndarray, choose the build in functions in numpyndarray बनाने के संबंध में, numpy में बिल्ड इन फ़ंक्शन का चयन करें
6 / 75
Choose the true properties of nd-array asnd-सरणी के वास्तविक गुणों को इस प्रकार चुनें
7 / 75
Is the following statement true? Numpy array can be converted to the list in python3?क्या निम्न कथन सत्य है? क्या Numpy array को python3 में लिस्ट में बदला जा सकता है?
8 / 75
What does it do?यह क्या करता है?array.min()
9 / 75
What is zero() function in numpy use to?numpy में zero() फ़ंक्शन का उपयोग किस लिए किया जाता है?
10 / 75
How to import numpy module?numpy मॉड्यूल कैसे import करें?
11 / 75
import numpy as npnp.array(list)
is it true to import numpy module like this?क्या इस तरह से numpy मॉड्यूल import करना सही है?
12 / 75
Fetch numpy as npnp.array(list)
13 / 75
What is the correct code to install numpy in the windows system containing python3?Python3 वाले विंडोज़ सिस्टम में numpy इंस्टाल करने के लिए सही कोड क्या है?
14 / 75
What is the correct code to install numpy in the linux system containing python3?Python3 वाले लिनक्स सिस्टम में numpy इंस्टॉल करने के लिए सही कोड क्या है?
15 / 75
What will be output for the following code?निम्नलिखित कोड का आउटपुट क्या होगा?import numpy as npa=np.array([[1,2,3],[0,1,4]])b=np.zeros(2,3),dtype=np.int16)c=np.ones(2,3),dtype=np.int16)d=a+b+cprint(d[1,2])
16 / 75
What will be output for the following code?निम्नलिखित कोड का आउटपुट क्या होगा?import numpy as npa=np.array([1,2,3,5,8])print((a)ndim)
17 / 75
What will be output for the following code?निम्नलिखित कोड का आउटपुट क्या होगा?import numpy as npa=np.array([[1,2,3],[0,1,4]])print((a)size)
18 / 75
What will be output for the following code?निम्नलिखित कोड का आउटपुट क्या होगा?import numpy as npary=np.array([1,2,3,5,8])ary=ary+1print(ary[1])
19 / 75
What will be printed?क्या प्रिंट किया जाएगा?import numpy as npa=np.array([1,2,3,5,8])b=np.array([0,3,4,2,1])c=a+bc=c*aprint(c[2])
20 / 75
What is the range of uint32 data type?uint32 डेटा प्रकार की सीमा क्या है?
21 / 75
What will be output for the following code?निम्नलिखित कोड का आउटपुट क्या होगा?import numpy as npdt=np.dtype([(‘age’,np.int8)])a=np.array([(10,),(20,),(30,)],dtype=dt)print a[‘age’]
22 / 75
Which of the following set the floating point error callback function or log object?निम्नलिखित में से कौन फ्लोटिंग पॉइंट एरर कॉलबैक फ़ंक्शन या लॉग ऑब्जेक्ट सेट करता है?
23 / 75
which of the following statement is true?निम्नलिखित में से कौन सा कथन सत्य है?
24 / 75
which of the following function stacks id arrays as columns into a 2d array?निम्नलिखित में से कौन सा फ़ंक्शन आईडी एरे को 2d एरे में कॉलम के रूप में स्टैक करता है?
25 / 75
what is the syntax for dtype object?dtype ऑब्जेक्ट के लिए सिंटैक्स क्या है?
26 / 75
what will be output for the following code?निम्नलिखित कोड का आउटपुट क्या होगा?import numpy as npa=np.array([1,2,3,4,5], ndmin=2)print a
27 / 75
The basic ndarray is created using?मूल ndarray किसका उपयोग करके बनाया जाता है?
28 / 75
Which of the following Numpy operation are correct?निम्नलिखित में से कौन सा Numpy ऑपरेशन सही है?
29 / 75
Numpy developed by?Numpy किसके द्वारा विकसित किया गया?
30 / 75
Each built-in data type has a character code that uniquely identifies it. What is meaning of code “M”? प्रत्येक अंतर्निहित डेटा प्रकार का एक वर्ण कोड होता है जो उसे विशिष्ट रूप से पहचानता है। कोड “M” का अर्थ क्या है?
31 / 75
What will be output for the following code?निम्नलिखित कोड का आउटपुट क्या होगा?import numpy as npdt=dt=np.dtype(‘i4’)print(dt)
32 / 75
Which of the following sets the size of the buffer used in ufuncs?निम्नलिखित में से कौन ufuncs में प्रयुक्त बफर का आकार निर्धारित करता है?
33 / 75
If a dimension is given as ……….in a reshaping operation, the other dimensions are automatically calculatedयदि किसी पुनर्आकार देने की कार्रवाई में एक आयाम को …….. के रूप में दिया गया है, तो अन्य आयामों की गणना स्वचालित रूप से की जाती है
34 / 75
Which of the following statement is false?निम्नलिखित में से कौन सा कथन गलत है?
35 / 75
What will be output for the following code?निम्नलिखित कोड का आउटपुट क्या होगा?import numpy as npa=np.array(]1,2,3,],dtype=complex)print(a)
36 / 75
what will be output for the following code?निम्नलिखित कोड का आउटपुट क्या होगा?import numpy as npa=np.array([1,2,3])print(a)
37 / 75
the most important object defined in NumPy is an N-dimensional array type calledNumPy में परिभाषित सबसे महत्वपूर्ण ऑब्जेक्ट एक N-डायमेंशनल ऐरे प्रकार है जिसे कहा जाता है
38 / 75
NumPy is often used along with packages like.NumPy का प्रयोग अक्सर इस तरह के पैकेजों के साथ किया जाता है।
39 / 75
NumPy stand for?NumPy का पूर्ण रूप क्या है?
40 / 75
What will be the output of following Python code?निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
import numpy as npa = np.array([(10,20,30)])print(a.itemsize)
41 / 75
Using ndim we can find -ndim का प्रयोग करके हम पा सकते हैं -
42 / 75
What will be the output of the following Python code?निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
from numpy import randomx = random.randint(100)print(x)
43 / 75
Observe the following code and identify what will be the outcome?निम्नलिखित कोड को देखिए और पहचानिए कि परिणाम क्या होगा?import numpy as npa = np.array([[ 0, 1, 2, 3], [ 4, 5, 6, 7], [ 8, 9, 10, 11]])b = ab is a
44 / 75
Observe the following code and identify what will be the outcome?निम्नलिखित कोड को देखिए और पहचानिए कि परिणाम क्या होगा?import numpy as npx = np.array([[0, 1],[2, 3]])np.transpose(x)
45 / 75
Observe the following code and identify what will be the outcome?निम्नलिखित कोड को देखिए और पहचानिए कि परिणाम क्या होगा?
import numpy as npa=np.array([1,2,3,4,5,6])print(a)
46 / 75
NumPy arrays can be ___.NumPy ऐरे ___ हो सकती है।
47 / 75
Amongst which of the following is true with reference to Pip in Python?पायथन में Pip के संदर्भ में निम्नलिखित में से कौन सा कथन सत्य है?
48 / 75
Amongst which Python library is similar to Pandas?इनमें से कौन सी पायथन लाइब्रेरी पांडा के समान है?
49 / 75
NumPy package is capable to do fast operations on arrays.NumPy पैकेज ऐरे पर तेजी से कार्य करने में सक्षम है।
50 / 75
What is the purpose of NumPy in Python?पायथन में NumPy का उद्देश्य क्या है?
51 / 75
Numpy arrays used over lists becauseNumpy arrays का उपयोग सूचियों के स्थान पर किया जाता है क्योंकि
52 / 75
The number of axes in an ndarray is called its…………किसी ndarray में अक्षों की संख्या को उसका ………… कहा जाता है।
53 / 75
Getting and setting smaller subarrays within a larger arrayएक बड़े एरे के अंदर छोटे सबएरे प्राप्त करना और सेट करना
54 / 75
Getting and setting the value of individual array elementsअलग-अलग ऐरे तत्वों का मान प्राप्त करना और सेट करना
55 / 75
Attributes of array determinesarray के गुण निर्धारित करता है
56 / 75
What will be output for the following code?निम्नलिखित कोड का आउटपुट क्या होगा?import numpy as npary=np.array([1,2,3,58])ary=ary+1print(ary[1])
57 / 75
58 / 75
Which of the following keyword is used to access the numpy module in python?पायथन में numpy मॉड्यूल तक पहुँचने के लिए निम्नलिखित में से किस कीवर्ड का उपयोग किया जाता है?
59 / 75
Which of the following is used to convert the list data type to the Numpy array?सूची डेटा प्रकार को नम्पी ऐरे में बदलने के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
60 / 75
Which of the following is the essential argument to pass in full() function of Numpy array?Numpy array के full() फंक्शन में पास करने के लिए निम्नलिखित में से कौन सा आवश्यक तर्क है?
61 / 75
Which of the following is not valid to import the numpy module?निम्न में से कौन सा numpy मॉड्यूल को आयात करने के लिए मान्य नहीं है?
62 / 75
Which of the following is correct way to import the Numpy module in your program?निम्नलिखित में से कौन सा आपके प्रोग्राम में Numpy मॉड्यूल को आयात करने का सही तरीका है?
63 / 75
Which of the following find the maximum number in the Numpy array?निम्नलिखित में से कौन Numpy array में अधिकतम संख्या ज्ञात करता है?
64 / 75
Which of the following counts the number of elements in Numpy array?निम्नलिखित में से कौन Numpy array में तत्वों की संख्या गिनता है?
65 / 75
Which of the following argument we need to pass in reshape() functionsreshape() फ़ंक्शन में हमें निम्नलिखित में से कौन सा तर्क पास करना होगा
66 / 75
What is the use of the zeros() function in Numpy array in python?पायथन में Numpy array में zeros() फ़ंक्शन का उपयोग क्या है?
67 / 75
What is the use of the size attribute in Numpy array in python?पायथन में Numpy array में आकार विशेषता का उपयोग क्या है?
68 / 75
Shape() function in Numpy array is used toNumpy array में Shape() फ़ंक्शन का उपयोग किया जाता है
69 / 75
Numpy.array(list), what it doesNumpy.array(सूची), यह क्या करता है
70 / 75
Numpy in the Python provides theपायथन में Numpy प्रदान करता है
71 / 75
Minimum number of argument to pass in full() function in Numpy array?Numpy array में full() फ़ंक्शन में पास करने के लिए न्यूनतम तर्क संख्या क्या है?
72 / 75
It is possible to convert the Numpy array to list in python?क्या पायथन में Numpy array को सूची में परिवर्तित करना संभव है?
73 / 75
How are install Numpy in the system?सिस्टम में Numpy कैसे स्थापित करें?
74 / 75
How we can find the type of numpy array in python?हम पायथन में numpy array का प्रकार कैसे पता कर सकते हैं?
75 / 75
How we can convert the Numpy array to the list in python?हम पाइथन में Numpy array को सूची में कैसे परिवर्तित कर सकते हैं?
Your score is
The average score is 26%
Restart quiz