page-banner
Chapter-3 Introduction to Python
Q71.
निम्नलिखित कोड का आउटपुट क्या होगा?<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
Q72.
निम्नलिखित 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
Q73.
निम्नलिखित में से किसमें डेटा स्थायी रूप से संग्रहित होता है?<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
Q74.
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
Q75.
Python में एक in-built interactive shell के रूप में आने वाले GUI का नाम क्या है?<break-line><break-line>What is the name of the GUI that comes in-built as an interactive shell with Python?
A. PGUI
B. PyShell
C. IDLE
D. PythonSh
View Answer