page-banner
Chapter-3 Introduction to Python
Q56.
Python module किस file extension के साथ होता है?<break-line><break-line>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 कैसे बनाई जाती है?<break-line><break-line>How can we create an empty list in Python?
A. list=()
B. list.null
C. null.list
D. list=[ ]
View Answer
Q58.
निम्नलिखित Python कोड का value क्या होगा?<break-line><break-line>What is the value of the following Python code?<pre><code>print(36/4)</code></pre>
A. 9
B. 4
C. 9.0
D. 4.0
View Answer
Q59.
निम्नलिखित में से कौन Python का कीवर्ड नहीं है?<break-line><break-line>Which of the following words is not a keyword of Python language?
A. val
B. raise
C. try
D. with
View Answer
Q60.
निम्नलिखित Python कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<pre><code>len(["hello", 2, 4, 6])</code></pre>
A. Error
B. 6
C. 4
D. 3
View Answer