page-banner
Chapter-3 Introduction to Python
Q26.
स्ट्रिंग के मान का मूल्यांकन करने के लिए कौन सा function प्रयोग होता है?<break-line><break-line>The function used to evaluate the value of a string is……….
A. evaluate
B. eval
C. add
D. length
View Answer
Q27.
वह संरचना जिसमें keys और values होते हैं उसे क्या कहते हैं?<break-line><break-line>The structure having keys and values is called __________.
A. list
B. tuple
C. set
D. dictionary
View Answer
Q28.
__________ function 1 से n तक की संख्या की एक श्रृंखला बनाता है।<break-line><break-line>The __________ function generates a sequence of numbers from 1 to n.
A. set
B. list
C. range
D. program
View Answer
Q29.
Python एक case sensitive भाषा है जब identifiers की बात आती है।<break-line><break-line>Python is a case sensitive language when dealing with identifiers.
A. True
B. False
C. Sometimes
D. Never
View Answer
Q30.
निम्नलिखित कोड का आउटपुट क्या होगा?<break-line><break-line>What is the output of the following code?<pre><code>print( bool(0), bool(3.14159), bool(-3), bool(1.0+1j) )</code></pre>
A. True True False True
B. False True False True
C. False False False True
D. False True True True
View Answer