page-banner
Python M3-R5.1 MCQs SET-5
Q21.
variable नामों के लिए निम्नलिखित में से कौन सा सही है?<break-line><break-line>Which of the following is true for variable names?
A. unlimited length
B. limited length
C. ampersand can be used in its name
D. None of the above
View Answer
Q22.
रिक्त स्थान को भरें।<break-line><break-line>Fill in the blank.<break-line><break-line><pre><code>import pickle f = open("data.dat", "rb") d = ___________.load(f) f.close()</code></pre>
A. unpickle
B. pickling
C. pickle
D. pick
View Answer
Q23.
फ़्लोचार्ट और एल्गोरिदम का उपयोग __________ के लिए किया जाता है।<break-line><break-line>Flowcharts and algorithms are used for __________.
A. Better programming
B. Efficient coding
C. Easy testing and debugging
D. All of the above
View Answer
Q24.
कौन सा कथन फ़ाइल सूचक को वर्तमान स्थिति से 10 बाइट पीछे ले जायेगा?<break-line><break-line>Which statement will move file pointer 10 bytes backward from current position?
A. f.seek(-10,0)
B. f.seek(-10,1)
C. f.seek(10,0)
D. None of the above
View Answer
Q25.
पायथन में, निम्न में से कौन सा फंक्शन एक बिल्ट-इन फंक्शन है?<break-line><break-line>In python, which of the following functions is a built-in function?
A. val()
B. print()
C. func_k()
D. None of these
View Answer