Report Bug
Qus :

What is the output of the following code?

x = 50
def func (x):
    x = 2
func (x)
print ('x is now', x)

Qus

निम्नलिखित कोड का आउटपुट क्या होगा?

x = 50
def func (x):
    x = 2
func (x)
print ('x is now', x)


A. x is now 50
B. x is now 2
C. x is now 100
D. Error


Solution
A. x is now 50






Report Bug