page-banner
Chapter-4 Operator, Expressions & Python Statement
Q46.
निम्नलिखित स्टेटमेंट का आउटपुट क्या होगा ?

What will be the output after the following statements?
for i in range(1,6):
    print(i, end=' ')
    if i == 3:
        break
A. 1 2
B. 1 2 3
C. 1 2 3 4
D. 1 2 3 4 5
View Answer
Q47.
निम्नलिखित को हल करने पर आउटपुट क्या होगा ?

What value does the following expression evaluate to?
print(5 + 8 * ((3* 5)-9) /10)
A. 9.0
B. 9.8
C. 10
D. 10.0
View Answer
Q48.
निम्नलिखित को हल करने पर आउटपुट क्या होगा ?

What value does the following expression evaluate to?
x = 5
while x < 10:
    print(x, end=' ')
A. Closed loop
B. One time loop
C. Infinite loop
D. Evergreen loop
View Answer
Q49.
निम्नलिखित एक्सप्रेशन का आउटपुट क्या होगा?

What will be the output of the following expression?
x = 4
print(x << 2)
A. 4
B. 16
C. 6
D. 2
View Answer
Q50.
निम्नलिखित एक्सप्रेशन का आउटपुट क्या होगा ?

What will be the output of the following expression?
print(7//2)
print(-7//2)
A. 3 -3
B. 4 -4
C. 3 -4
D. 3 3
View Answer

Create Account