निम्नलिखित का आउटपुट क्या होगा?<break-line><break-line>What is the output of the following code?<pre><code>import numpy as np
y = np.array([[11, 12, 13, 14], [32, 33, 34, 35]])
print(y.ndim)</code></pre>
निम्नलिखित का आउटपुट क्या होगा?<break-line><break-line>What is the output of the following code?<pre><code>import numpy as np
a = np.array([1, 2, 3])
print(a.ndim)</code></pre>
निम्नलिखित का आउटपुट क्या होगा?<break-line><break-line>What is the output of the following code?<pre><code>import numpy as np
a = np.array([2, 3, 4, 5])
print(a.dtype)</code></pre>
x का डेटाटाइप क्या है?<break-line><break-line>What is the datatype of x?<pre><code>import numpy as np
a = np.array([1, 2, 3, 4])
x = a.tolist()</code></pre>
निम्नलिखित कोड का परिणाम क्या है?<break-line><break-line>What is the output of the following code?<pre><code>import numpy as np
a = np.array([1, 2, 3, 5, 8])
b = np.array([0, 3, 4, 2, 1])
c = a + b
c = c * a
print(c[2])</code></pre>