Vidyalelo
Python · Q35

Python Lists MCQs: Exam Practice for List Concepts

Programming · Python · question 35

Q35

Suppose list1 is [1, 3, 2], What is list1 * 2?

A.
[2, 6, 4]
B.
[1, 3, 2, 1, 3]
C.
[1, 3, 2, 1, 3, 2]
Answer
D.
[1, 3, 2, 3, 2, 1]

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board