page-banner
Chapter-9 NumPy Basics
Q6.
निम्नलिखित कोड के लिए आउटपुट क्या होगा?<break-line><break-line>What is the output of the following code?<pre><code>import numpy as np a = np.array([1.1, 2, 3]) print(a.dtype)</code></pre>
A. int32
B. float64
C. float
D. None
View Answer
Q7.
निम्नलिखित कोड के लिए आउटपुट क्या होगा?<break-line><break-line>What will be output for the following code?<pre><code>import numpy as np a = np.array([11, 2, 3]) print(a.min())</code></pre>
A. 2
B. 1
C. 11
D. 3
View Answer
Q8.
Numpy ऐरे की विशेषताएँ क्या हैं?<break-line><break-line>What are the attributes of numpy array?
A. shape, dtype, ndim
B. objects, type, list
C. objects, non vectorization
D. Unicode and shape
View Answer
Q9.
NumPY का मतलब है?<break-line><break-line>NumPY stands for?
A. Numbering Python
B. Number In Python
C. Numerical Python
D. None of the above
View Answer
Q10.
निम्नलिखित कोड का परिणाम क्या है?<break-line><break-line>What is the output of the following code?<pre><code>import numpy as np a = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) print(a.shape)</code></pre>
A. (2, 3)
B. (3, 3)
C. (1,1)
D. None of these
View Answer