निम्नलिखित कोड के लिए आउटपुट क्या होगा?<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>
निम्नलिखित कोड के लिए आउटपुट क्या होगा?<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>
निम्नलिखित कोड का परिणाम क्या है?<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>