page-banner
Python M3-R5.1 MCQs SET-1
Q11.
फ्लो चार्ट में आउटपुट को दर्शाने के लिए निम्न में से किस चिन्ह का प्रयोग किया जाता है?<break-line><break-line>Which of the following symbols is used to represent output in a flow chart?
A. वर्ग / Square
B. वृत्त / Circle
C. समांतर चतुर्भुज / Parallelogram
D. त्रिभुज / Triangle
View Answer
Q12.
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<break-line><break-line><pre><code>from math import * floor(11.7)</code></pre>
A. 12
B. 11
C. 11.0
D. इनमें से कोई नहीं / None of these
View Answer
Q13.
पाइथन ______ नामक एक कंस्ट्रक्ट का उपयोग करते हुए, रनटाइम पर अनाम कार्यों के निर्माण को स्पोर्ट करता है।<break-line><break-line>Python supports the creation of anonymous functions at runtime, using a construct called -------------.
A. pi
B. anonymous
C. lambda
D. इनमें से कोई नहीं / none of the above
View Answer
Q14.
निम्नलिखित में से कौन सा शब्द Python भाषा का कीवर्ड नहीं है?<break-line><break-line>Which of the following words is not a keyword of Python language?
A. val
B. try
C. raise
D. with
View Answer
Q15.
निम्नलिखित का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following?<break-line><break-line><pre><code>print(sum(1,2,3))</code></pre>
A. त्रुटि / Error
B. 6
C. 1
D. 3
View Answer