Home / Programming MCQs / Python MCQs / Question

R

Ram Sharma • 188.01K Points
Coach

Q. What is the output of the following piece of code?

Code:
#mod1
def change(a):
b=[x*2 for x in a]
print(b)
#mod2
def change(a):
b=[x*x for x in a]
print(b)
from mod1 import change
from mod2 import change
#main
s=[1,2,3]
change(s)
(A) [2,4,6].
(B) [1,4,9].
(C) [2,4,6].
(D) There is a name clash

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.