page-banner
Chapter-4 Operator, Expressions & Python Statement
Q66.
............. ऑपरेटर दिए गये आइटमो की संख्या के लिए एक सूची दोहराता है |<break-line><break-line>__________ operator repeats a list for the given number of items.
A. for
B. while
C. range
D. None of these
View Answer
Q67.
आउटपुट निर्धारित करें |<break-line><break-line>Determine the output:<pre><code>for i in range(20,30,10): j=i/2 print(j)</code></pre>
A. 10 15
B. 10.0 15.0
C. 10.0
D. None of these
View Answer
Q68.
निम्नलिखित एक्सप्रेशन का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following expression ?<pre><code>x = 14 print(x>>2)</code></pre>
A. 14
B. 1
C. 3
D. 2
View Answer
Q69.
किसी विशेष टास्क को दोहराने के लिए, हम .......... का उपयोग करते है |<break-line><break-line>To repeat a particular task, we use __________.
A. Input
B. Loop
C. Output
D. Condition
View Answer
Q70.
निम्नलिखित का आउटपुट क्या होगा ?<break-line><break-line>What is the output of the following ?<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