page-banner
Python M3-R5.1 MCQs SET-7
Q21.
निम्नलिखित वस्तु का डेटा प्रकार क्या है?<break-line><break-line>What is the data type of following object ?<break-line><break-line><pre><code>A = [5,'abc',3.2,6]</code></pre>
A. tuple
B. array
C. list
D. dictionary
View Answer
Q22.
एक __________ पूरे प्रोग्राम को स्कैन करता है और इसे पूरे मशीन कोड में ट्रांसलेट करता है।<break-line><break-line>A __________ scans the entire program and translates it as a whole into machine code.
A. Compiler
B. Interpreter
C. Debugger
D. None of the above
View Answer
Q23.
वेरिएबल के बदलते वैल्यूज को स्टेपिंग कहा जाता है।<break-line><break-line>The examination of changing values of variables is called stepping.
A. True
B. False
C. Can’t say
D. May be
View Answer
Q24.
निम्नलिखित कोड का आउटपुट क्या है?<break-line><break-line>What is the output of following code ?<break-line><break-line><pre><code>A=[[1,2,3], [4,5,6], [7,8,9]] print(A[1][:])</code></pre>
A. [1, 2, 3]
B. [4, 5, 6]
C. [2, 5, 8]
D. None of these
View Answer
Q25.
NumPY का मतलब है?<break-line><break-line>NumPY stands for ?
A. Numbering Python
B. Number In Python
C. Numerical Python
D. None of the above
View Answer