Computer Science, asked by vedanshmehrotra72, 5 months ago

What will be the output of the following
: p,q,r=2,3,4 r,q,p=p+2,q-2,r+2 print(p,q,r)

Answers

Answered by Anonymous
5

Answer:

hey mate, I m going to post the pic of answer of ur question on my profile... u follow me to get the pic easily....!

plz like and mark me as brainiest......

Answered by roshna2004
0

ANSWER:

6  1  4

Explanation:

p, q, r=2,3,4

r, q, p=p+2, q-2, r+2

r = p + 2 = 2 + 2 = 4

q = q - 2 = 3 - 2 = 1

p = r + 2 = 4 + 2 = 6

therefore output :

print(p, q, r)

6  1  4

Similar questions