page-banner
Python M3-R5.1 MCQs SET-13
Q16.
निम्नलिखित सूडो कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following pseudo code<pre><code>Integer a, b Set a = 9, b = 5 a = a mod (a - 3) b = b mod (b - 3) Print a + b</code></pre>
A. 4
B. 5
C. 9
D. 8
View Answer
Q17.
फ्लो चार्ट में इनपुट और आउटपुट ऑपरेशंस के लिए निम्न में से कौन सा प्रतीक प्रयोग किया जाता है?<break-line><break-line>Which of the following symbol is used for input and output operations in a flow chart ?
A. Rectangle
B. Parallelogram
C. Circle
D. Diamond
View Answer
Q18.
__________ वर्तमान लूप पुनरावृत्ति को तुरंत समाप्त कर देता है।<break-line><break-line>__________ immediately terminates the current loop iteration.
A. break
B. pass
C. continue
D. None of these
View Answer
Q19.
हम पायथन में एक खाली सूची कैसे बना सकते हैं?<break-line><break-line>How can we create an empty list in Python ?
A. list=()
B. list.null
C. null.list
D. list=[ ]
View Answer
Q20.
निम्न में से कौन सा एक परिवर्तनशील डेटा प्रकार है?<break-line><break-line>Which one of the following is a mutable data type ?
A. set
B. tuple
C. String
D. None of these
View Answer