Unit 7: Parameters, Return, and Libraries Flashcards
parameter
a variable in a function, used as a placeholder for values that will be passed through function
argument
the value passed to the parameter
return
used to return the flow of control to the point where the procedure was called and to return the value of expression
procedural abstraction
a process that allows a procedure to be used only knowing what it does, not how it does it. allows a solution to a large problem to be based on the solution of smaller subproblems by creating procedures to solve each of the subproblems.
library
a group of functions that may be used in creating new programs
API
application program interface, specifications for how functions in a library behave and can be used