page-banner
Python M3-R5.1 MCQs SET-3
Q6.
कंप्यूटर सिस्टम का दिमाग है____________<break-line><break-line>The brain of a computer system is_____________
A. RAM
B. ROM
C. CPU
D. Control Unit
View Answer
Q7.
निम्नलिखित कोड का परिणाम क्या है ?<break-line><break-line>What is the output of the following code?<break-line><break-line><pre><code>def s(n1): print(n1) n1 = n1 + 2 n2 = 4 s(n2) print(n2)</code></pre>
A. 6 4
B. 4 6
C. 6 4
D. 4 4
View Answer
Q8.
निम्नलिखित का आउटपुट क्या है?<break-line><break-line>What is the output of the following?<break-line><break-line><pre><code>x = 123 for i in x: print(i)</code></pre>
A. 123
B. 123
C. Error
D. None of these
View Answer
Q9.
निम्नलिखित कथन का परिणाम क्या होगा?<break-line><break-line>What will be the output of the following statement?<break-line><break-line><pre><code>>> "m" + "nl"</code></pre>
A. 'm+nl'
B. 'mnl'
C. 'm nl'
D. 'm'
View Answer
Q10.
पायथन के संबंध में सही विकल्प का चयन करें।<break-line><break-line>Choose the correct option with respect to Python.
A. Both tuples and lists are immutable
B. Tuples are immutable while lists are mutable
C. Both tuples and lists are mutable
D. Tuples are mutable while lists are immutable
View Answer