Report Bug
Qus :

What is the output of this code?

def calc(x):
       r=2*x**2
       return r
print(calc(5))

Qus

इस कोड का आउटपुट क्या होगा

def calc(x):
       r=2*x**2
       return r
print(calc(5))



A. Error
B. 50
C. 100
D. 20


Solution
B. 50






Report Bug