Solved

Identify the Letter of the Choice That Best Matches the Phrase

Question 2

Matching

Identify the letter of the choice that best matches the phrase or definition

Premises:
Visual Basic provides a generic one of these in order to use a splash screen with a project
Using this event handler of a ComboBox is more efficient for the user because the user does not need to click elsewhere to indicate that a choice has been made
This provides a central location for managing project properties, settings, and resources
When a program is broken into manageable parts, each part is called this
Must be explicitly called from within the program code
A Sub procedure may be used within this kind of statement
If a Sub procedure is declared with this keyword, it can only be accessed by code within the class in which it was declared
Object that can trigger a SelectedIndexChanged event when a selection is made
When the user selects an item in the ComboBox object, this property of the ComboBox object is assigned a number that represents the selected item.
Consists of the procedure name followed by a set of parentheses
Responses:
template
ListBox
procedure call
SelectedIndexChanged
procedure
Sub procedure
SelectedIndex
Project Designer
Private
Select Case

Correct Answer:

When a program is broken into manageable parts, each part is called this
procedure
Using this event handler of a ComboBox is more efficient for the user because the user does not need to click elsewhere to indicate that a choice has been made
SelectedIndexChanged
Consists of the procedure name followed by a set of parentheses
procedure call
Visual Basic provides a generic one of these in order to use a splash screen with a project
template
When the user selects an item in the ComboBox object, this property of the ComboBox object is assigned a number that represents the selected item.
SelectedIndex
A Sub procedure may be used within this kind of statement
Select Case
This provides a central location for managing project properties, settings, and resources
Project Designer
Object that can trigger a SelectedIndexChanged event when a selection is made
ListBox
If a Sub procedure is declared with this keyword, it can only be accessed by code within the class in which it was declared
Private
Must be explicitly called from within the program code
Sub procedure
Related Questions