Computer Science, asked by samomi, 3 months ago

what will be the output of the following program
a,b,c=10,20,30
a,b,a=x+2,a+5,c+3
print(a,b)​

Answers

Answered by itsmerekha2017
5

Answer:

A. Values inside the function: [1, 2, 3, 4]

Values outside the function: [10, 20, 30]

B. Values inside the function: [10, 20, 30]

Values outside the function: [10, 20, 30]

C. Values inside the function: [1, 2, 3, 4]

Values outside the function: [1, 2, 3, 4]

D. None of the above

Similar questions