CPT187Final Flashcards

(30 cards)

1
Q

The process of repeating a set of instructions while a condition is true or until a condition is true is called ________ or ___________.

A

looping, iteration

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

A ______________ is a strip across the top of window that contains one or more menu names.

A

menu bar

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

You can use a ______ loop when a section of code is to be executed an exact number of times.

A

For…Next

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

The ending statement in a For…Next loop

A

Next

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

For…Next loop begins with the keyword For. Following this is the _____.

A

control variable

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

the numeric variable that keeps track of the number of iterations the loop completes.

A

control variable

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

The ______, __________, and ________ used in a For…Next loop can vary based on input from a user.

A

beginning, ending and step values

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

In a _____ loop, the body of the loop is executed while or until a condition is true or false.

A

Do

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

The _____ loop executes as long as the condition is true.

A

Do While

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

The _____ loop executes until the condition becomes true.

A

Do Until

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

A ___________ loop is tested before the loop is entered.

A

top-controlled

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

__________ loops test the condition at the bottom of the loop, so the body of a bottom-controlled loop is executed at least once.

A

bottom-controlled

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

The beginning statement of a top-controlled Do While loop

A

Do While condition

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

A loop that does not end is called an

A

infinite loop

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

Ending statement in a bottom controlled Do While loop

A

Loop While condition

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

The beginning statement of a top-controlled Do Until loop

A

Do Until condition

17
Q

Ending statement in a bottom controlled Do Until loop

A

Loop Until condition

18
Q

Starting a loop with a preset value in the variables tested in the condition is called

A

priming the loop

19
Q

Use a ________ loop if the number of repetitions is unknown and is based on a condition changing

20
Q

If a loop must be tested before the body of the loop is executed, use a ___________ or __________.

A

top-controlled Do While or Do Until

21
Q

If the instructions within a loop must be executed on time regardless of the status of a condition, use a ____________, or _______________.

A

bottom-controlled Do While or Do Until

22
Q

Resolving defects in code is called:

23
Q

_____________ are stop points placed in the code to tell the Visual Studio 2010 debugger where and when to pause the execution of the application.

24
Q

While in break mode, you can examine the values in all variables that are within the scope of execution through the use of

25
The __________ is identified by the bullet to the left of the line numbers and the highlight on the code.
breakpoint
26
The breakpoint is highlighted in what color?
yellow
27
After an application is ________, ________, and __________ you can ________ it.
complete, debugged, and working properly; deploy
28
When programming using Visual Basic 2010, you can create a deployed program by using_________.
ClickOnce Deployment
29
Use the __________ to publish an application.
Publish Wizard
30
The application can be published to ________, __________, or _________.
Web server, a network, or a hard drive