Exam 8: More on the Repetition Structure

arrow
  • Select Tags
search iconSearch Question
flashcardsStudy Flashcards
  • Select Tags

A control's ____________________ event occurs when a change is made to the contents of the control's Text property.

(Short Answer)
4.7/5
(30)

A combo box cannot replace a list box.

(True/False)
4.9/5
(31)

The purpose of the ____ operator is to reverse the sign of a number.

(Multiple Choice)
4.9/5
(33)

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]

(Multiple Choice)
4.8/5
(39)

In the following For clause, you can use the ____ portion to declare the counter variable. For counter [As datatype] = startvalue To endvalue [Step stepvalue]

(Multiple Choice)
4.9/5
(32)

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]

(Multiple Choice)
4.8/5
(36)

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]

(Multiple Choice)
4.8/5
(42)

You use the ____ method to select all of the text contained in a text box.

(Multiple Choice)
4.8/5
(32)

The loop created by a For...Next statement is a posttest loop.

(True/False)
4.9/5
(40)

Describe the three combo box styles available in Visual Basic and how they are set.

(Essay)
4.8/5
(46)
Match each item with a statement below.
Used to select the contents of a text box
combo box
The default style of a combo box
DropDown
Tells the computer where to begin counting for a loop
nested
Correct Answer:
Verified
Premises:
Responses:
Used to select the contents of a text box
combo box
The default style of a combo box
DropDown
Tells the computer where to begin counting for a loop
nested
Allows the full list of choices to be hidden
startValue
Placing one loop within another
SelectAll method
Style that always displays the List portion of a combo box
counter-controlled loop
Does not allow the full list of choices to be hidden
endValue
Tells the computer where to end counting for a loop
list box
Used when you want the computer to process instructions a precise number of times.
Simple
(Matching)
4.7/5
(33)

What is the purpose of an image list control?

(Essay)
4.7/5
(35)

A programmer uses a counter-controlled loop to process the loop instructions a(n) ____ number of times.

(Multiple Choice)
4.8/5
(34)

Describe the two main differences between a combo box and a list box and the advantages of each.

(Essay)
4.8/5
(43)

A text box's ____________________ event occurs when the text box receives the focus.

(Short Answer)
4.8/5
(38)

Within a For...Next statement, the loop's condition is evaluated ____ the loop body is processed.

(Multiple Choice)
4.7/5
(35)

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.

(Multiple Choice)
4.9/5
(38)

Many programmers use a(n) ____ to represent the For clause in a flowchart.

(Multiple Choice)
4.9/5
(38)

It is customary in Windows applications to select (highlight) the existing text when a text box receives the ____________________.

(Short Answer)
4.9/5
(42)

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]

(Essay)
4.7/5
(42)
Showing 21 - 40 of 42
close modal

Filters

  • Essay(0)
  • Multiple Choice(0)
  • Short Answer(0)
  • True False(0)
  • Matching(0)