page-banner
Chapter-3 Introduction to Python
Q11.
int(x) अभिव्यक्ति का मतलब है कि x को integer में बदला जा रहा है।<break-line><break-line>The expression int(x) implies that the variable x is converted to integer.
A. True
B. False
C. Can’t say
D. None of these
View Answer
Q12.
frozenset(s) function Python में tuples की sequence को dictionary में बदलता है।<break-line><break-line>frozenset(s) function converts a sequence of tuples to dictionary in Python.
A. True
B. False
C. Can’t say
D. None of these
View Answer
Q13.
Python में string को list में बदलने के लिए कौन सा function प्रयोग होता है?<break-line><break-line>A function converts a string to a list in Python.
A. bin()
B. list()
C. strip()
D. None
View Answer
Q14.
निम्नलिखित में से कौन सा core data type नहीं है?<break-line><break-line>Which of these is not a core data type?
A. Lists
B. Dictionary
C. Tuples
D. Class
View Answer
Q15.
नीचे दिए गए object का data type क्या है?<break-line><break-line>What data type is the object below?<pre><code>L = [ 1, 23, ‘hello’, 1 ]</code></pre>
A. List
B. Dictionary
C. Tuple
D. Array
View Answer