निम्नलिखित कोड का आउटपुट क्या है?<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>
निम्नलिखित कोड का आउटपुट क्या है?<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>
NumPy में परिभाषित सबसे महत्वपूर्ण ऑब्जेक्ट एक N-dimension ऐरे प्रकार है जिसे कहा जाता है?<break-line><break-line>The most important object defined in NumPy is an N-dimensional array type called?