page-banner
Chapter-3 Introduction to Python
Q31.
निम्नलिखित में से कौन सा Python का कीवर्ड नहीं है?<break-line><break-line>Which of the following is not a keyword in python?
A. return
B. in
C. False
D. false
View Answer
Q32.
निम्नलिखित में से कौन सा variable name के लिए सही है?<break-line><break-line>Which of the following is true for variable names?
A. unlimited length
B. limited length
C. ampersand can be used in its name
D. None of above
View Answer
Q33.
Python में निम्नलिखित में से कौन से escape sequences valid हैं?<break-line><break-line>Which of the following are valid escape sequences in Python?
A. \n
B. \t
C. \\
D. All of above
View Answer
Q34.
निम्नलिखित कोड चलाने पर आउटपुट क्या होगा?<break-line><break-line>What is the output when we execute<pre><code>list("hello")</code></pre>
A. ['h', 'e', 'l', 'l', 'o']
B. [' hello']
C. ['llo']
D. ['olleh']
View Answer
Q35.
यदि उपयोगकर्ता ने 55 दर्ज किया है, तो निम्नलिखित कोड का आउटपुट क्या होगा?<break-line><break-line>What is the output, if user has entered 55?<pre><code>a = input("Enter a number") print(type(a))</code></pre>
A. int
B. float
C. double
D. str
View Answer