What is a parameter?
A variable.
What can it sometimes be problematic to use?
A variable from outside the subroutine (or global variable).
What will a subroutine sometimes use?
Its own variables.
What is an argument?
Actual value passed to a function or subroutine.
What is global?
If referring to a variable, this identifies 1 that operates in and is referenced by a number of elements of code across the program.
What is an example of a global variable?
TIME.
What is local?
When referring to a variable, this identifies 1 which is only referenced within its own subroutine or function.