Chap. 4 (Functions) Flashcards
Define Algorithm
A general process for solving a category of problems.
Define Argument
A value provided to a function when the function is called. This value is assigned to to the corresponding parameter in the function.
Define Body
The sequence of statements inside a function definition.
Define Composition
Using an expression as part of a larger expression, or a statement as part of a larger statement.
Define Deterministic
Pertaining to a program that does the same thing each time it runs, given the same inputs.
Define Dot Notation
The syntax for calling a function in another module by specifying the module name followed by a dot (period) and the function name.
Define Flow of Execution
The order in which statements are executed during a program run.
Fruitful Function
A function that returns a value
Define Function
A named sequence of statements that performs some useful operation. Functions may or may not take arguments and may or may not produce a result.
Define Functional Call
A statement that executes a function. It consists of the function name followed by an argument list.
Define Function Definition
A statement that creates a new function, specifying its name, parameters, and the statements it executes
Define Function Object
A value created by a function definition. The name of the function is a variable that refers to a function object.
Define Header
The first line of a function definition
Define Import Statement
A statement that reads a module file and creates a module object
Define Module Object
A value created by an import statement that provides access to the data and code defined in a module.
Define Parameter
A name used inside a function to refer to the value passed as an argument.
Define Pseudorandom
Pertaining to a sequence of numbers that seem to be random, but are generated by a deterministic program.
Define Return Value
The result of a function. If a function call is used as an expression, the return value is the value of the expression.
Define Void Function
A function that doesn’t return a value.