page-banner
Python M3-R5.1 MCQs SET-20
Q1.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = [25, 34, 70, 63] n = m[2] - m[0] print(n)</code></pre>
A. 25
B. 45
C. 70
D. 34
View Answer
Q2.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = [25, 34, 70, 63] n = str(m[1]) + str(m[2]) print(n)</code></pre>
A. 2534
B. 95
C. 104
D. 3470
View Answer
Q3.
निम्नलिखित कथन के बाद m का डेटा प्रकार क्या होगा?<break-line><break-line>What will be the data type of m after the following statement?<pre><code>m = [90, 'A', 115, 'B', 250]</code></pre>
A. List
B. String
C. Dictionary
D. Tuple
View Answer
Q4.
निम्नलिखित कथन के बाद m का डेटा प्रकार क्या होगा?<break-line><break-line>What will be the data type of m after the following statement?<pre><code>m = 'World Wide Web'</code></pre>
A. List
B. String
C. Dictionary
D. Tuple
View Answer
Q5.
निम्नलिखित कथन के बाद m का डेटा प्रकार क्या होगा?<break-line><break-line>What will be the data type of m after the following statement?<pre><code>m = {'Listen' :'Music', 'Play' : 'Games'}</code></pre>
A. List
B. Set
C. Dictionary
D. Tuple
View Answer