page-banner
Chapter-4 Operator, Expressions & Python Statement
Q66.
............. ऑपरेटर दिए गये आइटमो की संख्या के लिए एक सूची दोहराता है |

__________ operator repeats a list for the given number of items.
A. for
B. while
C. range
D. None of these
View Answer
Q67.
आउटपुट निर्धारित करें |

Determine the output:
for i in range(20,30,10):
    j=i/2
    print(j)
A. 10 15
B. 10.0 15.0
C. 10.0
D. None of these
View Answer
Q68.
निम्नलिखित एक्सप्रेशन का आउटपुट क्या होगा ?

What will be the output of the following expression ?
x = 14
print(x>>2)
A. 14
B. 1
C. 3
D. 2
View Answer
Q69.
किसी विशेष टास्क को दोहराने के लिए, हम .......... का उपयोग करते है |

To repeat a particular task, we use __________.
A. Input
B. Loop
C. Output
D. Condition
View Answer
Q70.
निम्नलिखित का आउटपुट क्या होगा ?

What is the output of the following ?
x = 'abcd'
for i in range(len(x)):
    i.upper()
    print(x)
A. a b c d
B. 0 1 2 3
C. error
D. none of the mentioned
View Answer

Create Account