निम्नलिखित पायथन प्रोग्राम का आउटपुट ज्ञात करें।<break-line><break-line>Find the output of following Python Programs.<pre><code>def gfg(x, 1=[]):
for i in range(x):
1.append(i*i)
print(1)
gfg(2)</code></pre>
रिकर्सन के बारे में निम्नलिखित में से कौन सा कथन असत्य है?<break-line><break-line>Which of the following statements is false about recursion?
A.प्रत्येक पुनरावर्ती समारोह में आधार मामला होना चाहिए/Every recursive function must have a base case
B.यदि आधार मामले का ठीक से उल्लेख नहीं किया गया है तो अनंत पुनरावर्तन हो सकता है/Infinite recursion can occur if the base case is not properly mentioned
C.एक रिकर्सिव फ़ंक्शन कोड को समझने में आसान बनाता है/A recursive function makes the code easier to understand
D.प्रत्येक रिकर्सिव फ़ंक्शन में वापसी मान होना चाहिए/Every recursive function must have a return value
निम्नलिखित पायथन प्रोग्राम्स का आउटपुट है …………<break-line><break-line>The output of following Python Programs is…………<pre><code>r = lambda q:q*2
s = lambda q:q*3
x = 2
x = r(x)
x = s(x)
x = r(x)
print(x)</code></pre>