निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<break-line><break-line>What will be the output after the following statements?<pre><code>def abc(m=15, n=10, o=5) :
print(m * n % 10 + o / o)
abc()</code></pre>
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<break-line><break-line>What will be the output after the following statements?<pre><code>m = lambda n: n**3
print(m(6))</code></pre>
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>import math
print(math.floor(67.3))</code></pre>
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>import math
print(math.ceil(21.4))</code></pre>
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>import math
print(math.sqrt(4))</code></pre>