page-banner
Chapter-3 Introduction to Python
Q36.
निम्नलिखित object का data type क्या है?

What is the data type of the following object?
A = [ 5, “abc”, 3.2, 6 ]
A. tuple
B. array
C. list
D. dictionary
View Answer
Q37.
variables के changing values की जाँच को stepping कहा जाता है।

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 नहीं है?

Which of the following is not the built-in function?
A. input()
B. tuple()
C. print()
D. dictionary()
View Answer
Q39.
निम्नलिखित कोड का आउटपुट क्या होगा?

What is the output of the following code?
y = "I Love Python"
y[3] = 's'
print(y)
A. snow
B. snow world
C. snos world
D. Error in code
View Answer
Q40.
निम्न में से किस data type में indexing valid नहीं है?

In which data type, indexing is not valid?
A. list
B. dictionary
C. string
D. none of above
View Answer

Create Account