page-banner
Python M3-R5.1 MCQs SET-5
Q1.
__________ उपयोगकर्ता प्रलेखन का हिस्सा है।<break-line><break-line>__________ is part of user documentation.
A. Class Diagram
B. Code Comment
C. Use Case
D. Installation Guide
View Answer
Q2.
आउटपुट निर्धारित करें:<break-line><break-line>Determine the output :<break-line><break-line><pre><code>for i in range(20,30,10) : j=i/2 print(j)</code></pre>
A. 10 15
B. 10.0 15.0
C. 10.0
D. None of these
View Answer
Q3.
निम्नलिखित का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following ?<break-line><break-line><pre><code>import numpy as np print(np.minimum([2, 3, 4], [1, 5, 2]))</code></pre>
A. [1 2 5]
B. [1 5 2]
C. [2 3 4]
D. [1 3 2]
View Answer
Q4.
आइडेंटिफायर के साथ डील करते समय पाइथन केस सेंसिटिव होता है।<break-line><break-line>Python is a case sensitive language when dealing with identifiers.
A. True
B. False
C. Sometimes
D. Never
View Answer
Q5.
निम्नलिखित कोड का परिणाम क्या है ?<break-line><break-line>What is the output of the following code ?<break-line><break-line><pre><code>print(bool(0), bool(3.14159), bool(-3), bool(1.0+1j))</code></pre>
A. True True False True
B. False True False True
C. False False False True
D. False True True True
View Answer