निम्नलिखित कोड के लिए आउटपुट क्या होगा?<break-line><break-line>What will be output for the following code ?<pre><code>import numpy as np
a = np.array([[1,2,3],[0,1,4],[11,22,33]])
print(a.size)</code></pre>
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>a = 0
b = 3
while a + b < 8:
a += 1
print(a, end='')</code></pre>
Numpy array में इस्तेमाल किए गए zeros() फ़ंक्शन का उद्देश्य क्या है?<break-line><break-line>What is the purpose of zeros() function used in Numpy array ?