Write the output of the following code of statements. (4)
a=10
b=20
c=a
a=b
b=c
print(a)
print(b)
Answers
Answered by
2
Explanation:
if we will print(a) the outcome = 10
if we will print (b) the outcome =20
this is because the value u have inserted of a&b is 10&20 that's why when u will print the value of a&b the outcomes will be 10&20
Similar questions