निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<break-line><break-line>What will be the output after the following statements?<pre><code>def abc(m, n) :
print(m - n)
abc(14, 5)</code></pre>
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<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 + o)
abc()</code></pre>
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<break-line><break-line>What will be the output after the following statements?<pre><code>def abc(m, n) :
return m * n
print(abc(7, 3))</code></pre>
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<break-line><break-line>What will be the output after the following statements?<pre><code>def p(m, n) :
return m / n
o = p(50, 5)
print(o)</code></pre>
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<break-line><break-line>What will be the output after the following statements?<pre><code>def abc(m, n) :
print(m - m - n)
abc(14, 5)</code></pre>