Iteration

studied byStudied by 119 people
5.0(2)
get a hint
hint

Loop

1 / 14

15 Terms

1

Loop

A programming construct that allows a set of statements to be repeated multiple times as long as a certain condition is true.

New cards
2

While Loop

A type of loop that continues to cycle through as long as a specified condition is true.

New cards
3

Infinite Loop

A loop that continues indefinitely because the condition to exit the loop is never met.

New cards
4

For Loop

A type of loop that allows for more structured looping by specifying an initialization, condition, and incrementation of a variable.

New cards
5

Initializer

The first step in a for loop where a variable is initialized to a certain value.

New cards
6

Condition

The second step in a for loop where a condition is checked to determine if the loop should continue executing.

New cards
7

Statements

The third step in a for loop where a set of statements is executed as long as the condition is true.

New cards
8

Incrementer

The fourth step in a for loop where the value of the variable is incremented or changed.

New cards
9

Code for a for loop

for(/*initializer*/; /*condition*/; /*incrementor*/)
{
/*statements*/
}

//Note that all comments above would be filled with code acting as the specified task.
New cards
10

Code for a while loop

while(/*condition*/)
{
/*statements*/
}

//Note that all comments above would be filled with code acting as the specified task.
New cards
11

Where in a for-loop would code such as "i++” go?

Incrementor

New cards
12

Where in a for-loop would code such as "int i = 0” go?

Initializer

New cards
13

Where in a for-loop would code such as "i < 10” go?

Condition

New cards
14

Where in a while-loop would code such as "i < 10” go?

Condition

New cards
15

Where in a while-loop would code such as "i++” go?

Statements

New cards

Explore top notes

note Note
studied byStudied by 58 people
Updated ... ago
4.7 Stars(3)
note Note
studied byStudied by 7 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 3 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 2 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 8 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 5 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 4 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 4 people
Updated ... ago
5.0 Stars(2)

Explore top flashcards

flashcards Flashcard181 terms
studied byStudied by 5 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard115 terms
studied byStudied by 4 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard120 terms
studied byStudied by 7 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard144 terms
studied byStudied by 47 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard203 terms
studied byStudied by 675 people
Updated ... ago
5.0 Stars(3)
flashcards Flashcard86 terms
studied byStudied by 779 people
Updated ... ago
5.0 Stars(4)
flashcards Flashcard62 terms
studied byStudied by 10 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard58 terms
studied byStudied by 1 person
Updated ... ago
5.0 Stars(1)