page-banner
Python M3-R5.1 MCQs SET-11
Q11.
परीक्षण के रूप में जाना जाता है:<break-line><break-line>Testing is known as :
A. A stage of all projects
B. Finding broken code
C. Evaluating deliverable to find errors
D. None of the above
View Answer
Q12.
एक प्रोसेस को फ्लोचार्ट में __________ द्वारा व्यक्त किया जाता है।<break-line><break-line>A process is expressed in a flowchart by __________.
A. Rectangle
B. A circle
C. Parallelogram
D. A diamond
View Answer
Q13.
नीचे दिए गए प्रोग्राम का आउटपुट क्या है?<break-line><break-line>What is the output of below program ?<pre><code>def maximum(x, y): if x > y: return x elif x == y: return 'The numbers are equal' else: return y print(maximum(2, 3))</code></pre>
A. 2
B. 3
C. The numbers are equal
D. None of the options
View Answer
Q14.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>for i in range(1,6): print(i, end='') if i == 3: break</code></pre>
A. 1 2
B. 1 2 3
C. 1 2 3 4
D. 1 2 3 4 5
View Answer
Q15.
सभी अक्षरों को पढ़ने के लिए किस फंक्शन का प्रयोग किया जाता है?<break-line><break-line>Which function is used to read all the characters?
A. readall()
B. read()
C. readcharacters()
D. readchar()
View Answer