page-banner
Python M3-R5.1 MCQs SET-2
Q16.
x का डेटा टाइप क्या है?<break-line><break-line>What is the datatype of x?<break-line><break-line><pre><code>import numpy as np a = np.array([1, 2, 3, 4]) x = a.tolist()</code></pre>
A. int
B. tuple
C. array
D. list
View Answer
Q17.
किस सॉफ्टवेयर विकास चरण में सॉफ्टवेयर की गुणवत्ता का दस्तावेजीकरण किया जाता है?<break-line><break-line>In which software development phase is the quality of software documented?
A. Testing
B. Idea
C. Delivery
D. Development
View Answer
Q18.
निम्नलिखित कोड स्निपेट का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following code snippet?<break-line><break-line><pre><code>d = {3, 4, 5} for k in d: print(k)</code></pre>
A. {3,4,5} {3,4,5} {3,4,5}
B. 3 4 5
C. Syntax Error
D. None of the above
View Answer
Q19.
फ्लो चार्ट में दो ब्लॉक को जोड़ने के लिए फ्लोलाइन के रूप में किस चिन्ह का उपयोग किया जाता है?<break-line><break-line>Which symbol is used as a flowline to connect two blocks in a flowchart?
A. arrow
B. box
C. circle
D. parallelogram
View Answer
Q20.
कौन सा कथन फ़ाइल पॉइंटर को वर्तमान स्थिति से 10 बाइट पीछे ले जायेगा?<break-line><break-line>Which statement will move the file pointer 10 bytes backward from the current position?
A. f.seek-10, 0)
B. f.seek(10, 0)
C. f.seek(-10, 1)
D. none of the above
View Answer