page-banner
Chapter-3 Introduction to Python
Q61.
निम्नलिखित में से कौन सी declaration गलत है?

Which of the following declarations is incorrect?
A. _x = 2
B. x = 3
C. _xyz_ = 5
D. None of these
View Answer
Q62.
निम्नलिखित कथन का आउटपुट क्या होगा?

What will be the output of following statement?
>>> "m" + "nl"
A. 'm+nl'
B. 'mnl'
C. 'm nl'
D. 'm'
View Answer
Q63.
निम्नलिखित कोड का आउटपुट क्या होगा?

What will be the output of the following code?
m = '40' + '01'
print(m)
A. 4001
B. 01
C. 41
D. 40
View Answer
Q64.
निम्नलिखित कोड का आउटपुट क्या होगा?

What will be the output of the following code?
m = 81 + 34
print(m)
A. 8134
B. 81
C. 115
D. 34
View Answer
Q65.
निम्नलिखित Python कोड का आउटपुट क्या होगा?

What will be the output of the following Python code?
d1 = { "abc":5, "def":6, "ghi":7 }
print(d1[0])
A. abc
B. 5
C. { "abc" : 5 }
D. Error
View Answer

Create Account