page-banner
Python M3-R5.1 MCQs SET-19
Q6.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = True n = False print(m or n)</code></pre>
A. m or n
B. False
C. True
D. Mn
View Answer
Q7.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = True n = False print(not m)</code></pre>
A. not m
B. False
C. True
D. Not defined
View Answer
Q8.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = True n = False print('not n')</code></pre>
A. not n
B. False
C. True
D. Not defined
View Answer
Q9.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 7 * 5 + 8 print(m)</code></pre>
A. 91
B. 20
C. 47
D. 43
View Answer
Q10.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 9 * (3 + 12) print(m)</code></pre>
A. 45
B. 159
C. 95
D. 135
View Answer