M
Q. What is the output of the following piece of 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)
Be the first to start discuss.
Related MCQs
Q. Where is linear searching used?
Q. The terminal count of a typical modulus-10 binary counter is
Q. Evolutionary Strategies (ES)
Q. A DNS client is called _________
Q. The complexity of bubble sort is Θ(n2).
Q. Regarding paper prototypes:
Discusssion
Login to discuss.