Report Bug
Qus :

What will be the output?

x = 10
y = x
x = 20
print(y)

Qus

इसका परिणाम क्या होगा?

x = 10
y = x
x = 20
print(y)


A. 10
B. 20
C. Error
D. None


Solution
A. 10






Report Bug