page-banner
Chapter-3 Introduction to Python
Q66.
निम्नलिखित में से किसमें डेटा स्थायी रूप से संग्रहित होता है?<break-line><break-line>In which of the following, data is stored permanently?
A. Variable
B. File
C. Both of above
D. None of above
View Answer
Q67.
Python भाषा में, निम्नलिखित में से किसे variable के रूप में परिभाषित नहीं किया जा सकता?<break-line><break-line>In Python language, which of the following cannot be defined as variable?
A. _val
B. val
C. try
D. _try_
View Answer
Q68.
निम्नलिखित में से कौन सी 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
Q69.
निम्नलिखित कथन का आउटपुट क्या होगा?<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
Q70.
निम्नलिखित कोड का आउटपुट क्या होगा?<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