निम्नलिखित का आउटपुट क्या है?<break-line><break-line>What is the output of the following?<break-line><break-line><pre><code>m = 0
while m < 5:
print(m)
m += 1
if m == 3:
break
else:
print(0)</code></pre>
निम्नलिखित कोड के लिए आउटपुट क्या होगा?<break-line><break-line>What will be output for the following code?<break-line><break-line><pre><code>import numpy as np
a = np.array([[1,2,3],[0,1,4]])
print(a.size)</code></pre>