MCQ Single Best Answer Not Set

QWrite the output of the following:
t1 = ('a', 'b')
t2 = (1,2,3)
t2 + t1

ID: #3678 Python Tuple MCQ 142 views
Question Info
#3678Q ID
Not SetDifficulty
Python Tuple MCQTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A ('a', 'b', 1, 2, 3)
  • B (1, 'a', 2, 'b', 3)
  • C None of the above
  • D (1, 2, 3, 'a', 'b')
Correct Answer: Option D

Explanation

(1, 2, 3, 'a', 'b')

Share This Question

Challenge a friend or share with your study group.