page-banner
Chapter-6 (Part-2) Python Function
Q36.
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<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>
A. 150
B. 155
C. 1.0
D. 225
View Answer
Q37.
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<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>
A. 6
B. 18
C. 36
D. 216
View Answer
Q38.
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>import math print(math.floor(67.3))</code></pre>
A. 67
B. 68
C. 67.0
D. 68.0
View Answer
Q39.
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>import math print(math.ceil(21.4))</code></pre>
A. 21
B. 22
C. 21.0
D. 22.0
View Answer
Q40.
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>import math print(math.sqrt(4))</code></pre>
A. 2.1
B. 2
C. 2.0
D. 4.0
View Answer