page-banner
Python M3-R5.1 MCQs SET-10
Q11.
निम्नलिखित कोड का परिणाम क्या है?

What is the output of the following code ?
ms = ('A', 'D', 'H', 'U', 'N', 'I', 'C')
print(ms[1:4])
A. ('D', 'H', 'U')
B. ('A', 'D', 'H', 'U', 'N', 'I', 'C')
C. ('D', 'H', 'U', 'N', 'I', 'C')
D. None of these
View Answer
Q12.
>>> '2' + '3' का आउटपुट क्या है

What is the output of >>> '2' + '3'
A. 2 3
B. '2+3'
C. '23'
D. None of these
View Answer
Q13.
निम्नलिखित पायथन प्रोग्राम का आउटपुट क्या होगा?

What will be the output of the following Python program ?
def addItem(listParam):
    listParam += [1]
mylist = [1, 2, 3, 4]
addItem(mylist)
print(len(mylist))
A. 5
B. 8
C. 2
D. 1
View Answer
Q14.
एक विस्तृत फ़्लोचार्ट के रूप में जाना जाता है:

A detailed flowchart is known as :
A. Micro
B. Union
C. Macro
D. Stack
View Answer
Q15.
एल्गोरिदम को __________ द्वारा प्रदर्शित नहीं किया जा सकता है।

Algorithms cannot be represented by __________.
A. pseudo codes
B. syntax
C. flowcharts
D. programs
View Answer

Create Account