Open In App

Python-Quizzes | Python Tuples Quiz | Question 11

Question 11: What is the output of the following program?




T1 = (1
T2 = (3, 4
T1 += 5
print(T1)

(A) TypeError
(B) (1, 5, 3, 4)
(C) 1 TypeError
(D) 6

Answer: (D)
Explanation: T1 is an integer while T2 is tuple. Thus T1 will become 1 + 5 = 6.
Quiz of this Question
Please comment below if you find anything wrong in the above post

Article Tags :