निम्नलिखित कोड का परिणाम क्या है?<break-line><break-line>What is the output of the following code ?<pre><code>def disp(*arg):
for i in arg:
print(i)
disp(name="Rajat", age="20")</code></pre>
निम्नलिखित में से कौन लाइन दर लाइन प्रोग्रामिंग कोड को क्रियान्वित करता है?<break-line><break-line>Which of the following executes the programming code line by line?
निम्नलिखित फ़ंक्शन का रिटर्न प्रकार क्या है?<break-line><break-line>What is the return type of following function ?<pre><code>def func1():
return “mnp”,22</code></pre>
निम्नलिखित कोड का परिणाम क्या है?<break-line><break-line>What is the output of the following code ?<pre><code>def fun(a, b=6):
a=a+b
print(a)
fun(5, 4)</code></pre>