MCQ Practice Single Best Answer Topic: Python Tuple MCQ

Q Write the output of the following:
t1 = ('1', '2', '3', '4', '5')
print(t1 + tuple("tuple"))

Question ID
#3682
Subchapter
Python Tuple MCQ
Action
Choose one option below

Choose Your Answer

Click an option to check whether your answer is correct.

  • A ('1', '2', '3', '4', '5', 'tuple')
  • B Error
  • C ('1', '2', '3', '4', '5', 't', 'u', 'p', 'l', 'e')
  • D None of the above
Correct Answer: C

Explanation

('1', '2', '3', '4', '5', 't', 'u', 'p', 'l', 'e')

Share This Question

Share this MCQ with your friends or study group.