Computer Science, asked by gamingrayquaza772, 9 months ago

Output of : (2) a,b,c = 20,40,60 b+=10 c+=b print(a,b,c)

Answers

Answered by Nachiketman
4

Answer: a=20      b =50         c=110

Explanation:

a,b,c=20,40,60

b+=10

So value of b = 40 + 10 = 50

c +=b

So value of c = 60 + 50 =110

a would be unchanged.

Mark as brainliest answer

Answered by Rohan14044
0

Answer:

Answer: a=20      b =50         c=110

Similar questions