Vidyalelo
Python · Q31

MCQs on Python Tuples: Exam

Programming · Python · question 31

Q31

What will be the output of the following Python code? >>>t1 = (1, 2, 4, 3) >>>t2 = (1, 2, 3, 4) >>>t1 < t2

A.
True
B.
False
Answer
C.
Error
D.
None

Answer: Option B

Solution

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