Iterative Processing Flashcards
This is a post test loop in programming where the action of the loop precedes the “check if true” expression, which decides whether or not the loop should continue.
Do While Loop
A loop structure in various programming languages where the start, check, and step are designated in parentheses immediately after the ____, such as ___(int x=1; x<10;x++)
For Loop
The process in programming that uses loop based or recursive based control structures to repeat certain processes.
Iterative Processing
A process in programming that repeated a process a certain number of times.
Loop
A loop structure inside another loop structure, as would be found in an insertion sort, bubble sort, or selection sort, or in the processing of a two dimensional array structure.
Nested Loop
A loop where the check is made after the action of the loop has completed. A _______ ______ is guaranteed to act at least once. Two examples are do while and repeat until.
Post-Test Loop
A loop where the check is made before the action of the loop takes place. It is possible for this type of loop to NEVER act, specifically when the initial check is false. Two examples are while and for.
Pre-Test Loop
A type of loop in some languages that is a post test loop, similar in structure to a do while loop, but terminates when the check condition is true, unlike the do while which terminates when the check is false.
Repeat Until Loop
A protest loop in programming that checks a Boolean condition before performing the action of the loop, and continues iterating while the condition is true.
While Loop