page-banner
Chapter-6 (Part-2) Python Function
Q31.
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<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>
A. (14, 5)
B. 145
C. m - n
D. 9
View Answer
Q32.
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<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>
A. 150
B. 155
D. 225
View Answer
Q33.
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<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>
A. 21
B. 7, 3
C. (7, 3)
D. m * n
View Answer
Q34.
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<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>
A. 5
B. 50 / 5
C. 10.0
D. 10
View Answer
Q35.
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<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>
A. (14, 5)
B. -5
C. m - n
D. Error
View Answer