निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<pre><code>x = 'GyanXp'
for i in range(x):
print(i)</code></pre>
इस फ़ंक्शन के लिए निम्न में से किसका सही मूल्यांकन किया गया है?<break-line><break-line>Which of the following is correctly evaluated for this function?<pre><code>pow(x,y,z)</code></pre>
इस प्रोग्राम का आउटपुट क्या होगा?<break-line><break-line>What will be the output of this program?<pre><code>print(int(6 == 6.0) * 3 + 4 % 5)</code></pre>
इस प्रोग्राम का आउटपुट क्या होगा?<break-line><break-line>What will be the output of this program?<pre><code>a = 0
i = 1
while(a < 3):
if i < 4:
i = a * i + 5
a = a + 1
print(i)</code></pre>
यह प्रोग्राम कितनी बार लूप चलाएगा?<break-line><break-line>How many times will this program run the loop?<pre><code>a = 2
while(a > -100):
a = a - 1
print(a)</code></pre>