page-banner
Chapter-4 Operator, Expressions & Python Statement
Q51.
निम्नलिखित का आउटपुट क्या होगा ?<break-line><break-line>What is the output of the following ?<pre><code>y = 'klmn' for i in range(len(y)): print(y)</code></pre>
A. klmn klmn klmn klmn
B. k
C. k k k
D. None of these
View Answer
Q52.
"for loop" के अंदर की सामग्री को इसके द्वारा अलग किया जाता है:<break-line><break-line>The contents inside the “for loop” are separated by
A. colon
B. comma
C. semicolon
D. hyphen
View Answer
Q53.
निम्नलिखित पायथन कोड पर विचार करें<break-line><break-line>Let consider the following Python code<pre><code>a = True b = False c = False if a or b and c: print("TRUE") else: print("FALSE")</code></pre>
A. TRUE
B. FALSE
C. Error in Code
D. None of these
View Answer
Q54.
निम्नलिखित में से किसकी एक्सप्रेशन में सर्वोच्च प्राथमिकता है?<break-line><break-line>Which one of the following has the highest precedence in the expression?
A. Exponential
B. Addition
C. Multiplication
D. Parentheses
View Answer
Q55.
एडिशन और सब्ट्रेक्सन का एक ही पूर्वता स्तर है।<break-line><break-line>Addition and Subtraction has the same precedence level.
A. True
B. False
C. Can’t Say
D. None of these
View Answer