page-banner
Python M3-R5.1 MCQs SET-13
Q6.
निम्नलिखित में से कौन सा कीवर्ड नहीं है?<break-line><break-line>Which of the following is not a keyword ?
A. eval
B. nonlocal
C. assert
D. finally
View Answer
Q7.
निम्नलिखित स्यूडोकोड का आउटपुट क्या होगा, जहां ʌ XOR ऑपरेशन का प्रतिनिधित्व करता है?<break-line><break-line>What will be the output of the following pseudocode, where ʌ represent XOR operation ?<pre><code>Integer a, b, c Set b = 4, a = 3 c = a ^ b Print c</code></pre>
A. 4
B. 3
C. 5
D. 7
View Answer
Q8.
पैकेज से सभी मॉड्यूल आयात करने के लिए कौन सा कथन सही है?<break-line><break-line>Which statement is correct to import all modules from the package?
A. from package import all
B. from package import *
C. from package include all
D. from package include *
View Answer
Q9.
फ़्लोचार्ट और एल्गोरिदम का उपयोग __________ के लिए किया जाता है।<break-line><break-line>Flowchart and algorithms are used for __________.
A. Better programming
B. easy testing and debugging
C. Efficient Coding
D. All
View Answer
Q10.
निम्न में से कौन सा वैध पहचानकर्ता नहीं है?<break-line><break-line>Which of the following is not a valid identifier?
A. student
B. s12
C. 123
D. _123
View Answer