111k views
0 votes
Which of the following is not a step in the function-calling process?

a. The calling program suspends
b. The formal parameters are assigned the value of the actual parameters
c. The body of the function executes
d. Control returns to the point just before the function was called

1 Answer

3 votes

Answer: Option D.

Explanation: The function calling process, is the process of transferring control in a python program from one function to another until the other function returns.

It is also known as calling a function or making a function call.

Control returns to the point just before the function was called is NOT a STEP in the FUNCTION-CALLING PROCESS.

User Ahmetakil
by
5.4k points