प्रोग्रामर की आवश्यकता के अनुसार किसी कार्य को प्राप्त करने के लिए परिभाषित फ़ंक्शन को ………………… कहा जाता है।<break-line><break-line>Function defined to achieve some task as per the programmer’s requirement is called a …………………….
निम्नलिखित का आउटपुट क्या होगा?<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>What will be the output of the following?<pre><code>example = "helle"
example.rfind("e")</code></pre>
निम्नलिखित पाइथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<pre><code>from math import *
floor(11.7)</code></pre>
पायथन …………… नामक निर्माण का उपयोग करके रनटाइम पर अज्ञात कार्यों के निर्माण का समर्थन करता है।<break-line><break-line>Python supports the creation of anonymous functions at runtime, using a construct called ……………