निम्नलिखित का आउटपुट क्या है?<break-line><break-line>What is the output of the following ?<break-line><break-line><pre><code>i = 2
while True:
if i%3 == 0:
break
print(i, end=" " )
i += 2</code></pre>
निम्नलिखित कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of following code ?<break-line><break-line><pre><code>x = ['XX', 'YY']
for i in x:
i.lower()
print(x)</code></pre>
निम्नलिखित में से कौन सा एक फंक्शन को कॉल करने का सही तरीका है?<break-line><break-line>Which one of the following is the correct way of calling a function?
यदि किसी फंक्शन में रिटर्न स्टेटमेंट नहीं है, तो निम्नलिखित में से कौन सा फंक्शन रिटर्न करता है?<break-line><break-line>If a function does not have a return statement, which of the following does the function return?