page-banner
Chapter-3 Introduction to Python
Q41.
निम्नलिखित कोड का आउटपुट क्या होगा?<break-line><break-line>What is the output of the following code?<pre><code>a = 50 b = a = a*5 print(b)</code></pre>
A. 250
B. 10
C. 50
D. Syntax Error
View Answer
Q42.
Python किस भाषा में लिखी गई है?<break-line><break-line>In which language is Python written?
A. C
B. C++
C. Java
D. None of these
View Answer
Q43.
किसी variable को assign किया गया raw data क्या कहलाता है?<break-line><break-line>Raw data assigned to a variable is called as __________.
A. variable
B. literal
C. identifier
D. comment
View Answer
Q44.
निम्नलिखित का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following?<pre><code>print((range(4)))</code></pre>
A. 0,1,2,3
B. [0,1,2,3]
C. range(0,4)
D. (0,1,2,3)
View Answer
Q45.
निम्नलिखित में से कौन सी variable declaration गलत है?<break-line><break-line>Which of the following variable declaration is incorrect?
A. a_ = 3
B. _a = 3
C. a? = 3
D. All of these
View Answer