page-banner
Python M3-R5.1 MCQs SET-1
Q21.
निम्नलिखित कोड के लिए आउटपुट क्या होगा?<break-line><break-line>What will be the output for the following code?<break-line><break-line><pre><code>import numpy as np a = np.array([2, 3, 4, 5]) print(a.dtype)</code></pre>
A. int32
B. float
C. int
D. इनमें से कोई नहीं / None of these
View Answer
Q22.
हार्डवेयर को चलाने के लिए निम्न में से किस सॉफ्टवेयर की आवश्यकता होती है?<break-line><break-line>Which of the following software is required to run the hardware?
A. कार्य प्रबंधक / Task Manager
B. टास्क बार / Task Bar
C. प्रोग्राम मैनेजर / Program Manager
D. डिवाइस ड्राइवर / Device Driver
View Answer
Q23.
निम्नलिखित का आउटपुट क्या है?<break-line><break-line>What is the output of the following?<break-line><break-line><pre><code>y = 'klmn' for i in range(len(y)): print(y)</code></pre>
A. klmn klmn klmn klmn
B. k
C. kkk
D. इनमें से कोई नहीं / None of these
View Answer
Q24.
एक से अधिक डेवलपर को असाइन करने के लिए स्ट्रक्चर्ड प्रोग्राम को ________________ में विभाजित किया जा सकता है।<break-line><break-line>Structured program can be broken into ________________ to assign to more than one developer.
A. Segments
B. Units
C. Modules
D. उपरोक्त सभी / All of the above
View Answer
Q25.
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<break-line><break-line><pre><code>len(["hello", 2, 4, 6])</code></pre>
A. त्रुटि / Error
B. 6
C. 4
D. 3
View Answer