Term
|
Definition
an algorithim is a set of well defined sets for performing a task or solving a problem |
|
|
Term
|
Definition
statements written by the programmer in a text editor. |
|
|
Term
|
Definition
translated machine language instrcutions. Complied source code. |
|
|
Term
|
Definition
machine language instructions. |
|
|
Term
|
Definition
searches for directives to process source code in specific way. |
|
|
Term
|
Definition
combines object file with necesscary routines to turn object code into exe code |
|
|
Term
|
Definition
illegal uses of language elements. |
|
|
Term
|
Definition
the program runs but it is not doing what the programmer wanted. run programs with different data to prove it works. |
|
|
Term
|
Definition
RAM, holds the intructions programs are using the data those programs are using. |
|
|
Term
|
Definition
memory that holds data for long periods of time. hard drive. |
|
|
Term
|
Definition
int data type that has a size of 1 byte. |
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
information a pogram collects from the outside world |
|
|
Term
|
Definition
information sent to the outside world |
|
|
Term
steps to create and run a program |
|
Definition
source code
preprocessor
modified source code
compiler
object code
linker
executable code |
|
|
Term
|
Definition
outside of all functions, not recommended. |
|
|
Term
|
Definition
cannot be changed by a local variable, it makes for less confusion in a program. |
|
|
Term
|
Definition
within the function, is destroyed when function ends. |
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
repeats statement until the condition is true. |
|
|
Term
|
Definition
same as the while loop except that the loop will always run once even if the condition is true |
|
|
Term
|
Definition
combines initialization, testing, and updating of a loop control varialbe in a single loop header. Count controlled loop. |
|
|