Exam 8: More on the Repetition Structure

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

You use the ____ tool in the toolbox to add a combo box to an interface.

Free
(Multiple Choice)
4.8/5
(46)
Correct Answer:
Verified

A

Unlike selection structures, repetition structures cannot be nested.

Free
(True/False)
4.8/5
(35)
Correct Answer:
Verified

False

Why is it highly recommended to specify the name of the counter variable in the Next clause of a For...Next statement?

Free
(Essay)
4.9/5
(48)
Correct Answer:
Verified

Specifying the name of the counter variable in the Next clause within the For…Next syntax is highly recommended because it makes your code more self-documenting and easier to understand.

A ____ is similar to a list box in that it allows the user to select from a list of choices.

(Multiple Choice)
4.9/5
(31)

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

(Multiple Choice)
4.9/5
(38)

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]

(Multiple Choice)
4.7/5
(37)

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]

(Multiple Choice)
4.8/5
(37)

In a ____ combo box, the list portion is always displayed.

(Multiple Choice)
4.8/5
(41)

How do you add images to an Image List Control's images collection?

(Essay)
4.8/5
(38)

You can place one For...Next statement within another For...Next statement.

(True/False)
4.9/5
(36)

The ____________________ method calculates the periodic payments on a loan amount.

(Short Answer)
4.9/5
(35)

Three styles of combo boxes are available in Visual Basic.

(True/False)
4.9/5
(33)

Describe the way in which a control's TextChanged event occurs.

(Essay)
4.8/5
(31)

The style of a combo box is controlled by the combo box's ____ property.

(Multiple Choice)
4.9/5
(44)

Describe the two ways in which a text box's Enter event occurs.

(Essay)
4.9/5
(46)

In a ____ combo box, the text portion is not editable.

(Multiple Choice)
4.8/5
(41)

In Visual Basic, how many styles of combo boxes are available?

(Multiple Choice)
4.7/5
(44)

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]

(Short Answer)
4.9/5
(45)

How do you decide where to declare the For…Next statement's counter variable? What considerations should be taken into account?

(Essay)
4.8/5
(35)

In a For...Next statement, the declaration, initialization, update, and comparison tasks are handled by the ____ clause.

(Multiple Choice)
4.8/5
(39)
Showing 1 - 20 of 42
close modal

Filters

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