page-banner
Python M3-R5.1 MCQs SET-20
Q11.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = {'Listen' :'Music', 'Play' : 'Games'} n = m['Play'] print(n)</code></pre>
A. Listen
B. Music
C. Play
D. Games
View Answer
Q12.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = {'Listen' :'Music', 'Play' : 'Games'} n = list(m.values()) print(n[0])</code></pre>
A. Listen
B. Music
C. Play
D. Games
View Answer
Q13.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = {'Listen' :'Music', 'Play' : 'Games'} n = list(m.items()) print(n)</code></pre>
A. [('Play', 'Games'), ('Listen', 'Music')]
B. [('Listen', 'Music')]
C. [('Play', 'Games')]
D. ('Play', 'Games'), ('Listen', 'Music')
View Answer
Q14.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 36 if m > 19: print(100)</code></pre>
A. 36
B. 19
C. 100
D. M
View Answer
Q15.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 50 if m > 50: print(25) else: print(75)</code></pre>
A. 50
B. m
C. 75
D. 25
View Answer