Report Bug
Qus :

What is the output of the following statement ?

print ((2, 4) + (1, 5))

Qus

निम्नलिखित कथन का आउटपुट क्या है?

print ((2, 4) + (1, 5))


A. (2 , 4), (4 , 5)
B. (3 , 9)
C. (2, 4, 1, 5)
D. Invalid Syntax


Solution
C. (2, 4, 1, 5)






Report Bug