Deck 7: More on the Repetition Structure

Full screen (f)
exit full mode
Question
A combo box cannot replace a list box.
Use Space or
up arrow
down arrow
to flip the card.
Question
In the following For clause, if the stepvalue is negative, then the startvalue must be ____ to the endvalue for the loop instructions to be processed. For counter [As datatype] = startvalue To endvalue [Step stepvalue]

A) less than or equal
B) greater than or equal
C) equal
D) less than
Question
You use the ____ method to select all of the text contained in a text box.

A) Select
B) SelectText
C) SelectEvent
D) SelectAll
Question
In a For...Next statement, the declaration, initialization, update, and comparison tasks are handled by the ____ clause.

A) For
B) Init
C) Setup
D) Loop
Question
You can place one For...Next statement within another For...Next statement.
Question
A ____ sign in a For clause indicates that the loop body will be processed as long as the counter variable's value is less than or equal to the number or variable following the sign.

A) =<
B) >=
C) <=
D) =>
Question
Unlike selection structures, repetition structures cannot be nested.
Question
Within a For...Next statement, the loop's condition is evaluated ____ the loop body is processed.

A) after
B) before
C) once
D) as soon as
Question
In the following For clause, if you omit the stepvalue argument, a stepvalue of ____ is used. For counter [As datatype] = startvalue To endvalue [Step stepvalue]

A) null
B) -1
C) 0
D) 1
Question
In the following For clause, you can use the ____ portion to declare the counter variable. For counter [As datatype] = startvalue To endvalue [Step stepvalue]

A) startvalue
B) startvalue To endvalue
C) Step stepvalue
D) As datatype
Question
Many programmers use a(n) ____ to represent the For clause in a flowchart.

A) octagon
B) hexagon
C) circle
D) diamond
Question
When using the Do...Loop statement to code a counter-controlled loop, you must include a statement to declare and ____ the counter variable.

A) initialize
B) size
C) identify
D) specify
Question
The loop created by a For...Next statement is a posttest loop.
Question
In the following For clause, how many times will the computer count though the loop structure? For counter As numeric = 1 To 5 Step 1

A) 1
B) 4
C) 5
D) 6
Question
In the following For clause, when you declare the counter variable in a Dim statement at the beginning of a procedure, the counter variable has ____ scope. For counter [As datatype] = startvalue To endvalue [Step stepvalue]

A) procedure
B) local
C) block
D) open
Question
A programmer uses a counter-controlled loop to process the loop instructions a(n) ____ number of times.

A) infinite
B) unrestricted
C) unlimited
D) precise
Question
Three styles of combo boxes are available in Visual Basic.
Question
In the following For clause, when you declare the counter variable using the For clause's As datatype argument, the counter variable has ____ scope. For counter [As datatype] = startvalue To endvalue [Step stepvalue]

A) procedure
B) local
C) block
D) open
Question
In the following For clause, if the stepvalue is positive, then the startvalue must be ____ to the endvalue for the loop instructions to be processed. For counter [As datatype] = startvalue To endvalue [Step stepvalue]

A) less than or equal
B) greater than or equal
C) equal
D) greater than
Question
The purpose of the ____ operator is to reverse the sign of a number.

A) reversal
B) change-sign
C) negation
D) switch
Question
Match each item with a statement below.
a.startValue
f.counter-controlled loop
b.Simple
g.combo box
c.loop body
h.DropDown
d.nested
i.endValue
e.list box
Tells the computer where to begin counting for a loop
Question
Match each item with a statement below.
a.startValue
f.counter-controlled loop
b.Simple
g.combo box
c.loop body
h.DropDown
d.nested
i.endValue
e.list box
Contains the instructions you want the computer to repeat
Question
The style of a combo box is controlled by the combo box's ____ property.

A) Default
B) DropDownStyle
C) Selected
D) Index
Question
Match each item with a statement below.
a.startValue
f.counter-controlled loop
b.Simple
g.combo box
c.loop body
h.DropDown
d.nested
i.endValue
e.list box
Style that always displays the List portion of a combo box
Question
A ____ is similar to a list box in that it allows the user to select from a list of choices.

A) combo box
B) pulldown box
C) selection box
D) choice box
Question
In Visual Basic, how many styles of combo boxes are available?

A) one
B) two
C) three
D) four
Question
A text box's ____________________ event occurs when the text box receives the focus.
Question
Match each item with a statement below.
a.startValue
f.counter-controlled loop
b.Simple
g.combo box
c.loop body
h.DropDown
d.nested
i.endValue
e.list box
Does not allow the full list of choices to be hidden
Question
In a ____ combo box, the text portion is not editable.

A) DropDown
B) Simple
C) DropDownList
D) Standard
Question
Match each item with a statement below.
a.startValue
f.counter-controlled loop
b.Simple
g.combo box
c.loop body
h.DropDown
d.nested
i.endValue
e.list box
Allows the full list of choices to be hidden
Question
Match each item with a statement below.
a.startValue
f.counter-controlled loop
b.Simple
g.combo box
c.loop body
h.DropDown
d.nested
i.endValue
e.list box
The default style of a combo box
Question
The ____________________ method calculates the periodic payments on a loan amount.
Question
Match each item with a statement below.
a.startValue
f.counter-controlled loop
b.Simple
g.combo box
c.loop body
h.DropDown
d.nested
i.endValue
e.list box
Placing one loop within another
Question
In the following For clause, the startvalue, endvalue, and stepvalue items must be a(n) ____________________ data type.
For counter [As datatype] = startvalue To endvalue [Step stepvalue]
Question
A control's ____________________ event occurs when a change is made to the contents of the control's Text property.
Question
It is customary in Windows applications to select (highlight) the existing text when a text box receives the ____________________.
Question
Match each item with a statement below.
a.startValue
f.counter-controlled loop
b.Simple
g.combo box
c.loop body
h.DropDown
d.nested
i.endValue
e.list box
Tells the computer where to end counting for a loop
Question
You use the ____ tool in the toolbox to add a combo box to an interface.

A) ComboBox
B) Combo
C) Box
D) ComboList
Question
Match each item with a statement below.
a.startValue
f.counter-controlled loop
b.Simple
g.combo box
c.loop body
h.DropDown
d.nested
i.endValue
e.list box
Used when you want the computer to process instructions a precise number of times.
Question
In a ____ combo box, the list portion is always displayed.

A) DropDown
B) Simple
C) DropDownList
D) Standard
Question
Describe the two main differences between a combo box and a list box and the advantages of each.
Question
How do you add images to an Image List Control's images collection?
Question
Given the following For clause, describe the four values or arguments recorded inside the For clause flowchart hexagon.
For counter [As datatype] = startvalue To endvalue [Step stepvalue]
Question
Describe the way in which a control's TextChanged event occurs.
Question
Describe the two ways in which a text box's Enter event occurs.
Question
How do you decide where to declare the For…Next statement's counter variable? What considerations should be taken into account?
Question
Why is it highly recommended to specify the name of the counter variable in the Next clause of a For...Next statement?
Question
Describe the three combo box styles available in Visual Basic and how they are set.
Question
What is the purpose of an image list control?
Question
In the following For clause, describe how the computer will count though the loop structure.
For counter As Integer = 9 To 14 Step 1
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/50
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 7: More on the Repetition Structure
1
A combo box cannot replace a list box.
False
2
In the following For clause, if the stepvalue is negative, then the startvalue must be ____ to the endvalue for the loop instructions to be processed. For counter [As datatype] = startvalue To endvalue [Step stepvalue]

A) less than or equal
B) greater than or equal
C) equal
D) less than
B
3
You use the ____ method to select all of the text contained in a text box.

A) Select
B) SelectText
C) SelectEvent
D) SelectAll
D
4
In a For...Next statement, the declaration, initialization, update, and comparison tasks are handled by the ____ clause.

A) For
B) Init
C) Setup
D) Loop
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
5
You can place one For...Next statement within another For...Next statement.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
6
A ____ sign in a For clause indicates that the loop body will be processed as long as the counter variable's value is less than or equal to the number or variable following the sign.

A) =<
B) >=
C) <=
D) =>
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
7
Unlike selection structures, repetition structures cannot be nested.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
8
Within a For...Next statement, the loop's condition is evaluated ____ the loop body is processed.

A) after
B) before
C) once
D) as soon as
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
9
In the following For clause, if you omit the stepvalue argument, a stepvalue of ____ is used. For counter [As datatype] = startvalue To endvalue [Step stepvalue]

A) null
B) -1
C) 0
D) 1
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
10
In the following For clause, you can use the ____ portion to declare the counter variable. For counter [As datatype] = startvalue To endvalue [Step stepvalue]

A) startvalue
B) startvalue To endvalue
C) Step stepvalue
D) As datatype
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
11
Many programmers use a(n) ____ to represent the For clause in a flowchart.

A) octagon
B) hexagon
C) circle
D) diamond
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
12
When using the Do...Loop statement to code a counter-controlled loop, you must include a statement to declare and ____ the counter variable.

A) initialize
B) size
C) identify
D) specify
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
13
The loop created by a For...Next statement is a posttest loop.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
14
In the following For clause, how many times will the computer count though the loop structure? For counter As numeric = 1 To 5 Step 1

A) 1
B) 4
C) 5
D) 6
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
15
In the following For clause, when you declare the counter variable in a Dim statement at the beginning of a procedure, the counter variable has ____ scope. For counter [As datatype] = startvalue To endvalue [Step stepvalue]

A) procedure
B) local
C) block
D) open
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
16
A programmer uses a counter-controlled loop to process the loop instructions a(n) ____ number of times.

A) infinite
B) unrestricted
C) unlimited
D) precise
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
17
Three styles of combo boxes are available in Visual Basic.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
18
In the following For clause, when you declare the counter variable using the For clause's As datatype argument, the counter variable has ____ scope. For counter [As datatype] = startvalue To endvalue [Step stepvalue]

A) procedure
B) local
C) block
D) open
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
19
In the following For clause, if the stepvalue is positive, then the startvalue must be ____ to the endvalue for the loop instructions to be processed. For counter [As datatype] = startvalue To endvalue [Step stepvalue]

A) less than or equal
B) greater than or equal
C) equal
D) greater than
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
20
The purpose of the ____ operator is to reverse the sign of a number.

A) reversal
B) change-sign
C) negation
D) switch
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
21
Match each item with a statement below.
a.startValue
f.counter-controlled loop
b.Simple
g.combo box
c.loop body
h.DropDown
d.nested
i.endValue
e.list box
Tells the computer where to begin counting for a loop
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
22
Match each item with a statement below.
a.startValue
f.counter-controlled loop
b.Simple
g.combo box
c.loop body
h.DropDown
d.nested
i.endValue
e.list box
Contains the instructions you want the computer to repeat
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
23
The style of a combo box is controlled by the combo box's ____ property.

A) Default
B) DropDownStyle
C) Selected
D) Index
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
24
Match each item with a statement below.
a.startValue
f.counter-controlled loop
b.Simple
g.combo box
c.loop body
h.DropDown
d.nested
i.endValue
e.list box
Style that always displays the List portion of a combo box
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
25
A ____ is similar to a list box in that it allows the user to select from a list of choices.

A) combo box
B) pulldown box
C) selection box
D) choice box
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
26
In Visual Basic, how many styles of combo boxes are available?

A) one
B) two
C) three
D) four
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
27
A text box's ____________________ event occurs when the text box receives the focus.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
28
Match each item with a statement below.
a.startValue
f.counter-controlled loop
b.Simple
g.combo box
c.loop body
h.DropDown
d.nested
i.endValue
e.list box
Does not allow the full list of choices to be hidden
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
29
In a ____ combo box, the text portion is not editable.

A) DropDown
B) Simple
C) DropDownList
D) Standard
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
30
Match each item with a statement below.
a.startValue
f.counter-controlled loop
b.Simple
g.combo box
c.loop body
h.DropDown
d.nested
i.endValue
e.list box
Allows the full list of choices to be hidden
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
31
Match each item with a statement below.
a.startValue
f.counter-controlled loop
b.Simple
g.combo box
c.loop body
h.DropDown
d.nested
i.endValue
e.list box
The default style of a combo box
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
32
The ____________________ method calculates the periodic payments on a loan amount.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
33
Match each item with a statement below.
a.startValue
f.counter-controlled loop
b.Simple
g.combo box
c.loop body
h.DropDown
d.nested
i.endValue
e.list box
Placing one loop within another
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
34
In the following For clause, the startvalue, endvalue, and stepvalue items must be a(n) ____________________ data type.
For counter [As datatype] = startvalue To endvalue [Step stepvalue]
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
35
A control's ____________________ event occurs when a change is made to the contents of the control's Text property.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
36
It is customary in Windows applications to select (highlight) the existing text when a text box receives the ____________________.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
37
Match each item with a statement below.
a.startValue
f.counter-controlled loop
b.Simple
g.combo box
c.loop body
h.DropDown
d.nested
i.endValue
e.list box
Tells the computer where to end counting for a loop
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
38
You use the ____ tool in the toolbox to add a combo box to an interface.

A) ComboBox
B) Combo
C) Box
D) ComboList
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
39
Match each item with a statement below.
a.startValue
f.counter-controlled loop
b.Simple
g.combo box
c.loop body
h.DropDown
d.nested
i.endValue
e.list box
Used when you want the computer to process instructions a precise number of times.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
40
In a ____ combo box, the list portion is always displayed.

A) DropDown
B) Simple
C) DropDownList
D) Standard
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
41
Describe the two main differences between a combo box and a list box and the advantages of each.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
42
How do you add images to an Image List Control's images collection?
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
43
Given the following For clause, describe the four values or arguments recorded inside the For clause flowchart hexagon.
For counter [As datatype] = startvalue To endvalue [Step stepvalue]
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
44
Describe the way in which a control's TextChanged event occurs.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
45
Describe the two ways in which a text box's Enter event occurs.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
46
How do you decide where to declare the For…Next statement's counter variable? What considerations should be taken into account?
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
47
Why is it highly recommended to specify the name of the counter variable in the Next clause of a For...Next statement?
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
48
Describe the three combo box styles available in Visual Basic and how they are set.
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
49
What is the purpose of an image list control?
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
50
In the following For clause, describe how the computer will count though the loop structure.
For counter As Integer = 9 To 14 Step 1
Unlock Deck
Unlock for access to all 50 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 50 flashcards in this deck.