Computer Science, asked by harenivaish345, 4 months ago

What possible outputs(s) are expected to be displayed on screen at the timeof

execution of the program from the following code?
p, q =10,20 # Line 1
p, q = q, p # Line 2
print(p, q) # Line 3
q, r = p - 2, p + 2
print(p, q, r) # Line 4
p = "Hello World" # Line 5
(a) Name the type of an Assignment in Line 1. 1
(b) Name the technique used in Line 2. 1
(c) What will be printed while executing the Line 3. 1
(d) What will be the output while executing the Line 4. 1
(e) What happened while executing the Line 5. 1

Answers

Answered by shreyamishra8374
0

Answer:

Explanation:What possible outputs(s) are expected to be displayed on screen at the time of execution of the program from the followi...

https://brainly.in/question/14185496?utm_source=android&utm_medium=share&utm_campaign=question

Similar questions