Report Bug
Qus :

find the output of following code:

def add(a,b):
    return(a+b)
print(add(3,4))

Qus

निम्नलिखित कोड का आउटपुट :

def add(a,b):
    return(a+b)
print(add(3,4))


A. 4
B. 7
C. 9
D. 8


Solution
B. 7






Report Bug