Lesson 6: Loop Structures Flashcards

1
Q

They allow you to run one or more lines of code repetitively.

A

VB Loop Structures

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

It is a very useful feature of Visual Basic because it makes repetitive work easier.

A

Looping

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

It repeats a group of statements a specified number of times and a loop index counts the number of loop iterations as the loop executes.

A

For Next Loop

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

It stores the count of the repetition and increases its value with each repetition.

A

Variable

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

It is a numeric value that stores the starting value for the counter.

A

Start

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

It is a numeric value that stores the ending value for the counter.

A

End

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

This variable specifies a big increase or decrease in the value of the counter.

A

Step Size

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

It is a set of code you want to execute in each iteration of the For Next loop.

A

Statement

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

It is used to repeat a set of statements and indefinite number of times until a condition is satisfied.

A

Do Loop

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

This loop executes a set of statements when a condition is true. It is similar to the Do

A

While-End-While Loop

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