Computer Science, asked by ghoshruman2003, 8 months ago

Trace the flow of execution for the following program : 1. def fun(x) : 2. x=x**2 3. return x 4. x=10 5. print(x) 6. fun(x) 7. print(x)

Answers

Answered by ajaytripathi0181
1

Answer:

x=x**2 3. return x 4. x=10 5. print(x) 6. fun(x) 7. print(x)

Similar questions