निम्नलिखित का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following?<pre><code>def iq(a,b):
if(a==0):
return b
else:
return iq(a-1,a+b)
print(iq(3,6))</code></pre>
एक पायथन मॉड्यूल __________ फाइल एक्सटेंशन वाली एक फाइल है जिसमें वैध पायथन कोड होता है।<break-line><break-line>A Python module is a file with the __________ file extension that contains valid Python code.
निम्नलिखित कोड खंड क्या प्रिंट करेगा?<break-line><break-line>What will following code segment print ?<pre><code>a = True
b = False
c = False
if not a or b:
print(1)
elif not a or not b and c:
print (2)
elif not a or b or not b and a:
print (3)
else:
print (4)</code></pre>
निम्नलिखित स्टेटमेंट्स के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>x = 2
if x < 5:
print(x)
else:
pass</code></pre>