Iterative Processing Flashcards

1
Q

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.

A

Do While Loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

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++)

A

For Loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The process in programming that uses loop based or recursive based control structures to repeat certain processes.

A

Iterative Processing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

A process in programming that repeated a process a certain number of times.

A

Loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

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.

A

Nested Loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

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.

A

Post-Test Loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

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.

A

Pre-Test Loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

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.

A

Repeat Until Loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

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.

A

While Loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly