page-banner
Python M3-R5.1 MCQs SET-5
Q6.
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code ?<break-line><break-line><pre><code>def C2F(c): return c*9/5+32 print (C2F(100)) print (C2F(0))</code></pre>
A. 212.0, 32.0
B. 314, 24
C. 567, 98
D. None of the above
View Answer
Q7.
किसी विशेष कार्य को दोहराने के लिए हम __________ का प्रयोग करते हैं।<break-line><break-line>To repeat a particular task, we use __________.
A. Input
B. Loop
C. Output
D. Condition
View Answer
Q8.
निम्नलिखित में से कौन सा कथन अंत में निष्पादित होगा?<break-line><break-line>Which of the following statement will execute last ?<break-line><break-line><pre><code>def s(n1): # Statement 1 print(n1) # Statement 2 n2=4 # Statement 3 s(n2) # Statement 4</code></pre>
A. Statement 1
B. Statement 2
C. Statement 3
D. Statement 4
View Answer
Q9.
फ्लोचार्टिंग में वास्तविक निर्देश __________ में दर्शाए जाते हैं।<break-line><break-line>Actual instructions in flowcharting are represented in __________.
A. Circles
B. Boxes
C. Arrows
D. Lines
View Answer
Q10.
निम्नलिखित का आउटपुट क्या है?<break-line><break-line>What is the output of the following ?<break-line><break-line><pre><code>x = 'abcd' for i in range(len(x)): i.upper() print(x)</code></pre>
A. a b c d
B. 0 1 2 3
C. error
D. none of the mentioned
View Answer