page-banner
Chapter-3 Introduction to Python
Q61.
निम्नलिखित में से कौन सी declaration गलत है?<break-line><break-line>Which of the following declarations is incorrect?
A. _x = 2
B. x = 3
C. _xyz_ = 5
D. None of these
View Answer
Q62.
निम्नलिखित कथन का आउटपुट क्या होगा?<break-line><break-line>What will be the output of following statement?<pre><code>>>> "m" + "nl"</code></pre>
A. 'm+nl'
B. 'mnl'
C. 'm nl'
D. 'm'
View Answer
Q63.
निम्नलिखित कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following code?<pre><code>m = '40' + '01' print(m)</code></pre>
A. 4001
B. 01
C. 41
D. 40
View Answer
Q64.
निम्नलिखित कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following code?<pre><code>m = 81 + 34 print(m)</code></pre>
A. 8134
B. 81
C. 115
D. 34
View Answer
Q65.
निम्नलिखित Python कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<pre><code>d1 = { "abc":5, "def":6, "ghi":7 } print(d1[0])</code></pre>
A. abc
B. 5
C. { "abc" : 5 }
D. Error
View Answer