निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<pre><code>def say(message, times = 1):
print(message * times)
say('Hello')
say('World', 5)</code></pre>
निम्नलिखित कोड से कौन सा नंबर कभी भी जनरेट नहीं होगा |<break-line><break-line>Which of the following number can never be generated by the following code:<pre><code>random.randrange(0, 50)</code></pre>
निम्नलिखित पाइथन कोड का आउटपुट क्या होगा |<break-line><break-line>What will be the output of the following Python code?<pre><code>from math import *
ceil(3.4)</code></pre>
निम्नलिखित पाइथन कोड का आउटपुट क्या होगा |<break-line><break-line>What will be the output of the following Python code?<pre><code>from math import factorial
print(math.sqrt(25))</code></pre>