निम्नलिखित कोड का परिणाम क्या है ?<break-line><break-line>What is the output of the following code?<break-line><break-line><pre><code>def s(n1):
print(n1)
n1 = n1 + 2
n2 = 4
s(n2)
print(n2)</code></pre>
निम्नलिखित का आउटपुट क्या है?<break-line><break-line>What is the output of the following?<break-line><break-line><pre><code>x = 123
for i in x:
print(i)</code></pre>
निम्नलिखित कथन का परिणाम क्या होगा?<break-line><break-line>What will be the output of the following statement?<break-line><break-line><pre><code>>> "m" + "nl"</code></pre>