page-banner
Python M3-R5.1 MCQs SET-20
Q16.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 8 if m > 7: print(50) elif m == 7: print(60) else: print(70)</code></pre>
A. 50
B. 60
C. 70
D. 8
View Answer
Q17.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 85 n = 17 print(m / n)</code></pre>
A. 5
B. 5.5
C. 6.0
D. 5.0
View Answer
Q18.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 44 n = 23 m = m + n print(m)</code></pre>
A. 23
B. 44
C. 67
D. m + n
View Answer
Q19.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 20 n = 6 m = m * n print(m)</code></pre>
A. m * n
B. 20
C. 206
D. 120
View Answer
Q20.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 99 n = 11 m = m - n print(m)</code></pre>
A. 88
B. 11
C. 99
D. 9911
View Answer