page-banner
Chapter-9 NumPy Basics
Q46.
निम्नलिखित कोड का आउटपुट क्या है?<break-line><break-line>What is the output of following code?<pre><code>import numpy as np a=np.array([1,2,3,4,5,6]) print(a)</code></pre>
A. [1 2 3 4 5]
B. [1 2 3 4 5 6]
C. [0 1 2 3 4 5 6]
D. इनमें से कोई नहीं/None of the mentioned above
View Answer
Q47.
निम्नलिखित कोड का आउटपुट क्या है?<break-line><break-line>What is the output of following code?<pre><code>import numpy as np a = np.array([[0,1,2,3],[4,5,6,7],[8,9,10,11]]) b = a print(b is a)</code></pre>
A. True
B. False
C. Can’t Say
D. None of these
View Answer
Q48.
ndim का उपयोग करके हम पा सकते हैं -<break-line><break-line>Using ndim we can find –
A. हम ऐरे का dimension पा सकते हैं/We can find the dimension of the array
B. ऐरे का आकार/Size of array
C. मैट्रिक्स पर परिचालन गतिविधियाँ/Operational activities on Matrix
D. उपरोक्त में से कोई नहीं/None of the mentioned above
View Answer
Q49.
NumPy किसके द्वारा विकसित किया गया?<break-line><break-line>NumPy developed by?
A. Guido van Rossum
B. Travis Oliphant
C. Wes McKinney
D. Jim Hugunin
View Answer
Q50.
NumPy में परिभाषित सबसे महत्वपूर्ण ऑब्जेक्ट एक N-dimension ऐरे प्रकार है जिसे कहा जाता है?<break-line><break-line>The most important object defined in NumPy is an N-dimensional array type called?
A. ndarray
B. narray
C. nd_array
D. darray
View Answer