Vidyalelo
Python · Q114

Python Lists MCQs: Exam Practice for List Concepts

Programming · Python · question 114

Q114

What will be the output of the following Python code? list1 = [1, 2, 3, 4] list2 = [5, 6, 7, 8] print(len(list1 + list2))

A.
2
B.
4
C.
5
D.
8
Answer

Answer: Option D

Solution

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