Report Bug
Qus : Provide the output for the expression: list = [1, 2] + [3, 4]
Quslist= [1, 2] + [3, 4] का आउटपुट क्या होगा

A. [4,6]
B. [1, 2, 3, 4]
C. 10
D. Error in Code


Solution
B. [1, 2, 3, 4]






Report Bug