The value of the variable does not change during the execution of your program.
What is a constant?
100
It allows the design algorithm to take different paths or alternatives to the sequential process.
What is a selection control structure?
200
A unique integer value that is used to identify or access an array element. The index is used to distinguish one array element from another array element.
What is an index?
200
logic errors can cause a loop to continue to execute and never terminate
What is an infinite loop?
200
The flowlines within the flowchart will only flow downward and there is no branching or repeating of instructions.
What is a sequence control structure?
300
An identifier that is declared outside of any module has global scope. It can be referenced by any module.
What is global variable?
300
Adding together any numeric variable is done with your assignment statement.
What is an accumulator?
300
This control structure allows the design algorithm to repeat blocks of code based on some condition.
What is repetition control structure?
400
Once the program terminates, the information is lost
What is volatile?
400
Keep track of how many times a loop has been repeated
What is a counter?
400
A tool developers use to "hand trace" through their logic to determine whether the correct output results will be determined.
What is desk checking?
500
When the program stops executing and the power is turned off, you can save the program data.
What is persistent memory?
500
A single object that is made of several smaller objects of the same type stored in adjacent memory locations.
What is an array?
500
This type of error occurs when the program completes its execution and produces output that is incorrect.