Report Bug
Qus :

What will the following code output?

a=5 
a*=10	
print(a)

Qus

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

a=5 
a*=10	
print(a)


A. 5
B. 10
C. 50
D. Error


Solution
C. 50






Report Bug