Computer Science, asked by kanakbahara, 10 months ago

find the output

def Alter(P=15,Q=10):
P=P*Q
Q=P/Q
Print(P,"#",Q)
return Q
A=100
B=200
A=Alter(A,B)
Print(A,"$",B)
B=Alter(B)
Print(A, "$",B)
A=Alter(A)
Print(A,"$",B)​

Answers

Answered by Anonymous
5

150#1.5

15$10

15$15

10$15

hope it maybe correct

Answered by chandukumar96932
5

Answer:

20000 # 100.0

100.0 $ 200

2000 # 200.0

100.0 $ 200.0

1000.0 # 100.0

100.0 $ 200.0

Similar questions