Programming Language Python List MCQ Question #3985
Single Choice Not Set

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

ID: #3985 Python List MCQ 418 views
Question Info
#3985Q ID
Not SetDifficulty
Python List MCQTopic

Choose the Best Option

Click any option to instantly check if you're 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

Explanation

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

Share This Question

Challenge a friend or share with your study group.