Unit 7 - Parameters, Return, And Libraries Flashcards
Parameter
A variable in a function definition. Used as a placeholder for values that will be passed through the function
Argument
The value passed to the parameter
Return
Used to return the flow of control to the point where the procedure (aka function) was called and to return the value of the expression
Procedural abstraction
A process and allows a procedure to be used only knowing what it does, not how it does it. Procedural abstraction allows a solution to a large problem to be based on the solution of smaller subproblems, This is accomplished by creating smaller procedures to solve each of the subproblem.
API
Application Program Interface - specifications for how functions in a library behave and can be used