एक __________ संरचना द्वारा की गई कार्रवाई अंततः लूप को समाप्त करने का कारण बनती है।<break-line><break-line>The action performed by a __________ structure must eventually cause the loop to terminate.
निम्नलिखित कोड के लिए आउटपुट क्या होगा?<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([11,2,3])
print(a.min())</code></pre>
निम्नलिखित सूडो कोड का आउटपुट क्या होगा, जहां ʌ XOR ऑपरेशन का प्रतिनिधित्व करता है?<break-line><break-line>What will be the output of the following pseudo code, where ʌ represent XOR operation ?<break-line><break-line><pre><code>Integer a, b, c
Set b = 5, a = 1
c = a ^ b
print c</code></pre>