Report Bug
Qus :

What is the output of the following code ?

def fun(a, b=6):
    a=a+b
    print(a)
fun(5, 4)

Qus

निम्नलिखित कोड का परिणाम क्या है ?

def fun(a, b=6):
    a=a+b
    print(a)
fun(5, 4)


A. 11
B. 9
C. 5
D. 4


Solution
B. 9






Report Bug