page-banner
Python M3-R5.1 MCQs SET-19
Q1.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = 28
n = 5
print(m // n)
A. 5.0
B. 6
C. 5
D. 4.0
View Answer
Q2.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = 90
n = 7
print(m % n)
A. 6
B. 4
C. 6.0
D. 5.0
View Answer
Q3.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = 79
n = 64
print(m < n)
A. m < n
B. False
C. True
D. No
View Answer
Q4.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = 92
n = 35
print(m > n)
A. True
B. False
C. Yes
D. No
View Answer
Q5.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = False
n = True
print(m and n)
A. m and n
B. False
C. True
D. Mn
View Answer
Q6.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = True
n = False
print(m or n)
A. m or n
B. False
C. True
D. Mn
View Answer
Q7.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = True
n = False
print(not m)
A. not m
B. False
C. True
D. Not defined
View Answer
Q8.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = True
n = False
print('not n')
A. not n
B. False
C. True
D. Not defined
View Answer
Q9.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = 7 * 5 + 8
print(m)
A. 91
B. 20
C. 47
D. 43
View Answer
Q10.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = 9 * (3 + 12)
print(m)
A. 45
B. 159
C. 95
D. 135
View Answer
Q11.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = '40' + '01'
print(m)
A. 4001
B. 01
C. 41
D. 40
View Answer
Q12.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = 81 + 34
print(m)
A. 8134
B. 81
C. 115
D. 34
View Answer
Q13.
निम्नलिखित कथनों के बाद n का डेटा प्रकार क्या होगा यदि उपयोगकर्ता ने दर्ज किया है संख्या 45?

What will be the data type of n after the following statements if the user entered the number 45?
m = input('Enter a number: ')
n = int(m)
A. Float
B. String
C. List
D. Integer
View Answer
Q14.
निम्नलिखित कथन के बाद m का डेटा प्रकार क्या है?

What is the data type of m after the following statement?
m = (41, 54, 23, 68)
A. Dictionary
B. Tuple
C. String
D. List
View Answer
Q15.
निम्नलिखित कथन के बाद m का डेटा प्रकार क्या है?

What is the data type of m after the following statement?
m = ['July', 'September', 'December']
A. Dictionary
B. Tuple
C. List
D. String
View Answer
Q16.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = ['July', 'September', 'December']
n = m[1]
print(n)
A. ['July', 'September', 'December']
B. July
C. September
D. December
View Answer
Q17.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = [45, 51, 67]
n = m[2]
print(n)
A. 67
B. 51
C. [45, 51, 67]
D. 45
View Answer
Q18.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = [75, 23, 64]
n = m[0] + m[1]
print(n)
A. 75
B. 23
C. 64
D. 98
View Answer
Q19.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = ['July', 'September', 'December']
n = m[0] + m[2]
print(n)
A. July
B. JulyDecember
C. JulySeptember
D. SeptemberDecember
View Answer
Q20.
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?

What will be the output after the following statements?
m = 17
n = 5
o = m * n
print(o)
A. m * n
B. 17
C. 85
D. 5
View Answer