MCQ Practice Single Best Answer Topic: Python List MCQ

Q What will be the output after the following statements?
x = ['Today', 'Sunday', 'Monday']
y = [4, 6, 8]
print(y + x)

Question ID
#3985
Subchapter
Python List MCQ
Action
Choose one option below

Choose Your Answer

Click an option to check whether your answer is correct.

  • A ['Today', 'Sunday', 'Monday', 4, 6, 8]
  • B [4, 6, 8, 'Today', 'Sunday', 'Monday']
  • C ['Today', 'Sunday', 'Monday']
  • D [4, 6, 8]
Correct Answer: B

Explanation

[4, 6, 8, 'Today', 'Sunday', 'Monday']

Share This Question

Share this MCQ with your friends or study group.