Iteration

5.0(9)
Studied by 406 people
0%Unit 4 Mastery
0%Exam Mastery
Build your Mastery score
multiple choiceMultiple Choice
call kaiCall Kai
Supplemental Materials
Card Sorting

1/14

Last updated 2:25 AM on 10/25/23
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

15 Terms

1
New cards

Loop

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

2
New cards

While Loop

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

3
New cards

Infinite Loop

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

4
New cards

For Loop

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

5
New cards

Initializer

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

6
New cards

Condition

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

7
New cards

Statements

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

8
New cards

Incrementer

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

9
New cards

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. 
10
New cards

Code for a while loop

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

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

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

Incrementor

12
New cards

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

Initializer

13
New cards

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

Condition

14
New cards

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

Condition

15
New cards

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

Statements

Explore top notes

note
Japanese Animals Vocab
Updated 126d ago
0.0(0)
note
Food tests
Updated 1284d ago
0.0(0)
note
Plot storyboard
Updated 142d ago
0.0(0)
note
5.1 The Enlightenment
Updated 290d ago
0.0(0)
note
Temperature Effects
Updated 1314d ago
0.0(0)
note
Introduction
Updated 1147d ago
0.0(0)
note
Japanese Animals Vocab
Updated 126d ago
0.0(0)
note
Food tests
Updated 1284d ago
0.0(0)
note
Plot storyboard
Updated 142d ago
0.0(0)
note
5.1 The Enlightenment
Updated 290d ago
0.0(0)
note
Temperature Effects
Updated 1314d ago
0.0(0)
note
Introduction
Updated 1147d ago
0.0(0)

Explore top flashcards

flashcards
Chemistry of Life
59
Updated 878d ago
0.0(0)
flashcards
APUSH Final
22
Updated 1154d ago
0.0(0)
flashcards
architectures part 1
28
Updated 362d ago
0.0(0)
flashcards
pwpt 3
31
Updated 1087d ago
0.0(0)
flashcards
Phys. Ed Exam Notes (Grade 9)
44
Updated 429d ago
0.0(0)
flashcards
Chemistry of Life
59
Updated 878d ago
0.0(0)
flashcards
APUSH Final
22
Updated 1154d ago
0.0(0)
flashcards
architectures part 1
28
Updated 362d ago
0.0(0)
flashcards
pwpt 3
31
Updated 1087d ago
0.0(0)
flashcards
Phys. Ed Exam Notes (Grade 9)
44
Updated 429d ago
0.0(0)