Term
|
Definition
An electronic device for storing and processing data, typically in binary form, according to instructions given to it in a variable program. |
|
|
Term
|
Definition
A machine that processes something. |
|
|
Term
|
Definition
A planned series of instructions to be executed. The aggregate of several procedures. |
|
|
Term
|
Definition
The writer of code or a program. |
|
|
Term
|
Definition
A named series of coded instructions that can be called at any time within a program. |
|
|
Term
|
Definition
The value passed into a function/procedure. |
|
|
Term
|
Definition
Special "variable" limited to validity within a certain procedure/function. |
|
|
Term
|
Definition
The value returned by a function. The result of a procedure. |
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
A named memory location where intermittent values can be stored, read from, and overwritten. |
|
|
Term
|
Definition
Something limited to a certain area. i.e. a parameter is a "local variable" for a procedure/function. |
|
|
Term
|
Definition
Indicates visibility to everything within a program. i.e. A global variable |
|
|
Term
|
Definition
the area between beginning and end. The scope of public int feetToYards(int feet) { return feet / 3; } is "return feet / 3;" |
|
|
Term
|
Definition
numbers, characters, images that can be stored and translated for understanding by humans as well as computers. |
|
|
Term
|
Definition
A list of data that can be referenced and used to retrieve a certain datum. |
|
|