page-banner
Python M3-R5.1 MCQs SET-2
Q11.
निम्नलिखित अभिव्यक्ति का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following expression?<break-line><break-line><pre><code>x = 14 print(x >> 2)</code></pre>
A. 14
B. 1
C. 3
D. 2
View Answer
Q12.
निम्नलिखित में से कौन सा फंक्शन पाइथन में बिल्ट-इन फंक्शन है?<break-line><break-line>Which of the following functions is a built-in function in Python?
A. factorial()
B. seed()
C. print()
D. sqrt()
View Answer
Q13.
निम्नलिखित में से कौन सी डिक्लेरेशन गलत है?<break-line><break-line>Which of the following declarations is incorrect?
A. x = 2
B. x = 3
C. __xyz__ = 5
D. none of these
View Answer
Q14.
___________फ़ंक्शन फ़ाइल पॉइंटर की वर्तमान स्थिति लौटाता है।<break-line><break-line>___________function returns the current position of the file pointer.
A. get()
B. seek()
C. tell()
D. cur()
View Answer
Q15.
निम्नलिखित में से कौन सा मॉड्यूल का उपयोग करने का लाभ नहीं है?<break-line><break-line>Which of the following is not an advantage of using modules?
A. Provides a means of reuse of program code
B. Provides a means of dividing up tasks
C. Provides a means of reducing the size of the program
D. Provides a means of testing individual parts of the program
View Answer