page-banner
Python M3-R5.1 MCQs SET-19
Q11.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = '40' + '01' print(m)</code></pre>
A. 4001
B. 01
C. 41
D. 40
View Answer
Q12.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 81 + 34 print(m)</code></pre>
A. 8134
B. 81
C. 115
D. 34
View Answer
Q13.
निम्नलिखित कथनों के बाद n का डेटा प्रकार क्या होगा यदि उपयोगकर्ता ने दर्ज किया है संख्या 45?<break-line><break-line>What will be the data type of n after the following statements if the user entered the number 45?<pre><code>m = input('Enter a number: ') n = int(m)</code></pre>
A. Float
B. String
C. List
D. Integer
View Answer
Q14.
निम्नलिखित कथन के बाद m का डेटा प्रकार क्या है?<break-line><break-line>What is the data type of m after the following statement?<pre><code>m = (41, 54, 23, 68)</code></pre>
A. Dictionary
B. Tuple
C. String
D. List
View Answer
Q15.
निम्नलिखित कथन के बाद m का डेटा प्रकार क्या है?<break-line><break-line>What is the data type of m after the following statement?<pre><code>m = ['July', 'September', 'December']</code></pre>
A. Dictionary
B. Tuple
C. List
D. String
View Answer