Term
|
Definition
Structure that allows repeated execution of block statements |
|
|
Term
|
Definition
a block of statements that executes when the boolean expression that controls the loop is true |
|
|
Term
|
Definition
|
|
Term
|
Definition
executes body of loops continually as long as the boolean value continues to be true |
|
|
Term
|
Definition
a loop that executes a specific number of times |
|
|
Term
|
Definition
One in which the final number in loops is unknown |
|
|
Term
|
Definition
a variable whose value determines whether execution continues |
|
|
Term
|
Definition
|
|
Term
|
Definition
a block with no statement in it |
|
|
Term
|
Definition
a variable adds 1 to its value |
|
|
Term
|
Definition
a value reducing its value by 1 |
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
is the proccess of ensuring that a value falls within a specified range |
|
|
Term
|
Definition
is the first input statement prior to a loop that will execute subsequent input statements for the same variable |
|
|
Term
|
Definition
proccess of continually incrementing a variable to keep track of the nunber of occuring of some event |
|
|
Term
|
Definition
process of repeatedly increasing a value by some amount to produce a total |
|
|
Term
|
Definition
alters the value of the operand on the left by adding the operand to the right |
|
|
Term
|
Definition
alters the value by subtracting the operand on the right from it |
|
|
Term
|
Definition
alters by multiplying to right by it |
|
|
Term
|
Definition
alters by dividing right into it |
|
|
Term
|
Definition
alters by assigning the remainder when the left operand is divided by the right |
|
|
Term
|
Definition
adds 1 to a variable then evaluates it |
|
|
Term
|
Definition
evaluates a variable then adds 1 to it |
|
|
Term
|
Definition
a speacial loop that can be used when a defanite number of loops interactions is required |
|
|
Term
|
Definition
is one in which the loop control variable is tested before executed |
|
|
Term
|
Definition
checks the loop control variable at the bottom of the loop after one repetition has occured |
|
|
Term
|
Definition
the loop control variable is tested after the loop body executes |
|
|
Term
|
Definition
contained entirely within another loop |
|
|
Term
|
Definition
|
|