page-banner
Chapter-3 Introduction to Python
Q56.
Python module किस file extension के साथ होता है?

A Python module is a file with the ______ file extension that contains valid Python code.
A. .pym
B. .pymodule
C. .module
D. .py
View Answer
Q57.
Python में empty list कैसे बनाई जाती है?

How can we create an empty list in Python?
A. list=()
B. list.null
C. null.list
D. list=[ ]
View Answer
Q58.
निम्नलिखित Python कोड का value क्या होगा?

What is the value of the following Python code?
print(36/4)
A. 9
B. 4
C. 9.0
D. 4.0
View Answer
Q59.
निम्नलिखित में से कौन Python का कीवर्ड नहीं है?

Which of the following words is not a keyword of Python language?
A. val
B. raise
C. try
D. with
View Answer
Q60.
निम्नलिखित Python कोड का आउटपुट क्या होगा?

What will be the output of the following Python code?
len(["hello", 2, 4, 6])
A. Error
B. 6
C. 4
D. 3
View Answer

Create Account