page-banner
Chapter-3 Introduction to Python
Q36.
निम्नलिखित object का data type क्या है?<break-line><break-line>What is the data type of the following object?<pre><code>A = [ 5, “abc”, 3.2, 6 ]</code></pre>
A. tuple
B. array
C. list
D. dictionary
View Answer
Q37.
variables के changing values की जाँच को stepping कहा जाता है।<break-line><break-line>The examination of changing values of variables is called stepping.
A. True
B. False
C. Can’t say
D. May be
View Answer
Q38.
निम्नलिखित में से कौन सा built-in function नहीं है?<break-line><break-line>Which of the following is not the built-in function?
A. input()
B. tuple()
C. print()
D. dictionary()
View Answer
Q39.
निम्नलिखित कोड का आउटपुट क्या होगा?<break-line><break-line>What is the output of the following code?<pre><code>y = "I Love Python" y[3] = 's' print(y)</code></pre>
A. snow
B. snow world
C. snos world
D. Error in code
View Answer
Q40.
निम्न में से किस data type में indexing valid नहीं है?<break-line><break-line>In which data type, indexing is not valid?
A. list
B. dictionary
C. string
D. none of above
View Answer