page-banner
Python M3-R5.1 MCQs SET-9
Q16.
इनमें से कौन एक फाइल की विशेषता नहीं है ?<break-line><break-line>Which one is not the attribute of a file?
A. softspace
B. mode
C. closed
D. rename
View Answer
Q17.
एल्गोरिथम के लिए फ़्लोचार्ट बनाने की प्रक्रिया को __________ कहा जाता है।<break-line><break-line>The process of drawing a flowchart for an algorithm is called __________.
A. Performance
B. Algorithmic Representation
C. Evaluation
D. Flowcharting
View Answer
Q18.
कौन सा फ़ंक्शन दो तर्क लेता है?<break-line><break-line>Which of the function takes two arguments ?
A. dump()
B. load()
C. Both of the above
D. None of the above
View Answer
Q19.
मान लीजिए arr नाम वाली एक सूची में 5 तत्व हैं। आप सूची से दूसरा तत्व प्राप्त कर सकते हैं:<break-line><break-line>Suppose a list with name arr, contains 5 elements. You can get the 2nd element from the list using :
A. arr[-2]
B. arr[2]
C. arr[-1]
D. arr[1]
View Answer
Q20.
निम्नलिखित expression का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following expression ?<pre><code>a = 2 b = 8 print(a | b) print(a >> 1)</code></pre>
A. 10 0
B. 10 2
C. 2 2
D. 10 1
View Answer