page-banner
Python M3-R5.1 MCQs SET-19
Q1.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 28 n = 5 print(m // n)</code></pre>
A. 5.0
B. 6
C. 5
D. 4.0
View Answer
Q2.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 90 n = 7 print(m % n)</code></pre>
A. 6
B. 4
C. 6.0
D. 5.0
View Answer
Q3.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 79 n = 64 print(m < n)</code></pre>
A. m < n
B. False
C. True
D. No
View Answer
Q4.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 92 n = 35 print(m > n)</code></pre>
A. True
B. False
C. Yes
D. No
View Answer
Q5.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = False n = True print(m and n)</code></pre>
A. m and n
B. False
C. True
D. Mn
View Answer