Python-I Second Internal
Python-I Second Internal
3. def BSC():
a=20 ______________ [ ]
a) list b) number c) tuple d) None of these
7. 7 gives output as [ ]
a)Orange b) Banana c)Cherry d)None of these
9. 9 gives __________ [ ]
a) start b)end c) step d) none
a=3
b=1
print(a, b) ----> 9
a, b = b, a
print(a, b) ----> 10