Loop Structure

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/15

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

16 Terms

1
New cards

Conditional Loops

While Loop

Do While Loop

2
New cards

Conditional Loops

number of iterations is based on the condition

3
New cards

For loop

What is an Iterative Loop?

4
New cards

Counter

Initial

Limit

Step

4 Values in FOR LOOP

5
New cards

for (initial, limit, step)

{

//statement

}

SYNTAX OF FOR LOOP

6
New cards

Break

Continue

2 LOOP CONTROLS

7
New cards

Break

jumps out of loop

8
New cards

Continue

breaks the iteration and continue to the next one

9
New cards

While Loop

Do While Loop

2 TYPES OF

Conditional Loops

10
New cards

Conditional Loops

loops that are used if the number of iteration are based on conditions

11
New cards

Iterative Loops

for loops

12
New cards

Iterative Loops

loops that are used if the number of iterations are known (based on numbers)

13
New cards

Break and Continue Statments

loop controls that can change the loop process.

14
New cards

Conditional Loop

can be used as iterative loops, but cannot be the other way around.

15
New cards

while (condition) {

//statements

}

SYNTAX OF WHILE LOOP

16
New cards

do{

//statements

}while(condition)

do while loop