निम्नलिखित पाइथन कोड का आउटपुट क्या होगा |<break-line><break-line>What will be the output of the following Python code?<pre><code>from math import *
floor(3.7)</code></pre>
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<pre><code>def cube(x):
return x * x * x
x = cube(3)
print(x)</code></pre>
निम्नलिखित कोड द्वारा कितनी संख्याएँ प्रिंट की जाएंगी?<break-line><break-line>How many numbers will be printed by the following code?<pre><code>def fun(a,b):
for x in range(a,b+1):
if x%3==0:
print(x, end=" ")
fun(100,120)</code></pre>
निम्नलिखित कोड क्या प्रिंट करता है?<break-line><break-line>What does the following code print?<pre><code>x = 'mohan'
for i in range(len(x)):
x[i].upper()
print(x)</code></pre>
नीचे दिए गए प्रोग्राम का आउटपुट क्या है?<break-line><break-line>What is the output of below program?<pre><code>def maximum(x, y):
if x > y:
return x
elif x == y:
return 'The numbers are equal'
else:
return y
print(maximum(2, 3))</code></pre>