आउटपुट निर्धारित करें:<break-line><break-line>Determine the output :<break-line><break-line><pre><code>for i in range(20,30,10) :
j=i/2
print(j)</code></pre>
निम्नलिखित का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following ?<break-line><break-line><pre><code>import numpy as np
print(np.minimum([2, 3, 4], [1, 5, 2]))</code></pre>
निम्नलिखित कोड का परिणाम क्या है ?<break-line><break-line>What is the output of the following code ?<break-line><break-line><pre><code>print(bool(0), bool(3.14159), bool(-3), bool(1.0+1j))</code></pre>