UNIT 7 VOCAB Flashcards
U7L1
Parameter
a variable in a function definition. Used as a placeholder for
values that will be passed through the function.
U7L1
Argument
the value passed to the parameter
U7L1
Return
used to return the flow of control to the point where the procedure (also known as a function) was called and to return the value of expression.
U7L2
Procedural abstraction
a process that 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 nby creating procedures to solve each of the subproblems.
U7L5
Library
a group of functions (procedures) that may be used in creating new programs
U7L5
API
Application Program Interface - specifications for how functions in a library behave and can be used
U7L6
Modularity
the subdivision of a computer program into separate subprograms