page-banner
Chapter-3 Introduction to Python
Q51.
निम्नलिखित का आउटपुट क्या होगा?<break-line><break-line>What is the output of the following?<pre><code>print( int() )</code></pre>
A. Any random number
B. 1
D. Error
View Answer
Q52.
>>> float("12.6") का आउटपुट क्या होगा?<break-line><break-line>What is the output of >>> float("12.6")
A. 12.6
B. "12.6"
C. 12
D. syntax error
View Answer
Q53.
निम्न कोड के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 7 * 5 + 8 print(m)</code></pre>
A. 91
B. 20
C. 47
D. 43
View Answer
Q54.
निम्नलिखित में से कौन valid identifier नहीं है?<break-line><break-line>Which of the following is not a valid identifier?
A. student
B. s12
C. 123
D. _123
View Answer
Q55.
single line comment लिखने के लिए कौन सा symbol उपयोग किया जाता है?<break-line><break-line>Which symbol is used to write single line comment?
A. *
B. #
C. /
D. ?
View Answer