1/8
Looks like no tags are added yet.
| Name | Mastery | Learn | Test | Matching | Spaced | 
|---|
No study sessions yet.
function
a sequence of instructions with a name
arguments
supplied when a function is called
return value
the result that the function computes
header
the first line of the function’s definition
parameter variable
hold the arguments supplied in the function call
body
contains the statements that are executed when the function is called
return function
statement terminates a function call and yields the function result
main function
the last line of the program to trigger function from the body and send back result
local variable
variable defined within a function that can only be used in the function