Vidyalelo
Python · Q35

MCQs on Python Tuples: Exam

Programming · Python · question 35

Q35

What will be the output of the following Python code? >>> a=("Check")*3 >>> a

A.
('Check','Check','Check')
B.
* Operator not valid for tuples
C.
('CheckCheckCheck')
Answer
D.
Syntax error

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board