Deck 5: Decision Structures

Full screen (f)
exit full mode
Question
A condition can be true and false at the same time._________________________
Use Space or
up arrow
down arrow
to flip the card.
Question
A message box like the one shown in the accompanying figure is also known as a(n)____ box.
<strong>A message box like the one shown in the accompanying figure is also known as a(n)____ box.  </strong> A) alert B) dialog C) pop-up D) warning <div style=padding-top: 35px>

A) alert
B) dialog
C) pop-up
D) warning
Question
Which of the following is a feature of the Panel object?

A) caption
B) labeled border
C) scroll bars
D) none of the above
Question
After the Not operator,the ____ logical operator has the next precedence.

A) And
B) Xor
C) AndAlso
D) Or
Question
The Panel,GroupBox,and TabControl objects are examples of ____ objects.

A) compound
B) container
C) complex
D) group
Question
In string comparison,a number is more than an uppercase letter._________________________
Question
A RadioButton's Selected property will indicate if the radio button has been selected by the user._________________________
Question
Of all the following objects provided by Visual Basic for Windows applications,the ____ object is used most often.

A) GroupBox
B) TabControl
C) FlowLayout
D) TableLayout
Question
____ objects are used to gather related RadioButtons together so that the user can select one radio button from each group.

A) Container
B) Grouping
C) Layout
D) Cluster
Question
The plus sign is the operator for concatenation._________________________
Question
When using multiple ____ operators in an If statement,the order of precedence of the operators should be established through the use of parentheses.

A) relational
B) logical
C) concatenated
D) range
Question
An If...Then statement can be used to compare an arithmetic expression to a(n)____.

A) logical operator
B) constant
C) other data type
D) arithmetic operator
Question
An If...Then statement can be used to compare two string values._________________________
Question
To display a message box window like the one in the accompanying figure,use the ____ procedure of the MessageBox class.

A) Display
B) Show
C) View
D) Visible
Question
The Panel object performs in the same manner as the ____ object.

A) GroupBox
B) TabControl
C) FlowLayout
D) TableLayout
Question
The ____ object provides several options not available with the Panel object.

A) GroupBox
B) TabControl
C) FlowLayout
D) TableLayout
Question
When a condition is tested in a Visual Basic program,this is a possible outcome: ____.

A) the condition cannot be determined
B) the condition is true
C) the condition is constant
D) the condition is false
Question
When the object indicated by a RadioButton is selected by the user,the ____ property changes from False to True.

A) Selected
B) Value
C) Checked
D) Input
Question
A ____ object forces the user to select only one option from a group of options.

A) CheckBox
B) RadioButton
C) TextBox
D) CheckList
Question
The ____ is a relational operator.

A) =
B) ?
C) >
D) <
Question
To create a compound condition in an If statement,a(n)____ operator is required.

A) compound
B) logical
C) arithmetic
D) logical
Question
In an expression using the logical operator ____,as soon as one of the compound conditions is found to be false,no further conditions are tested and the expression evaluates to false.

A) Nor
B) AndAlso
C) OrElse
D) Xor
Question
The logical operator ____ has the highest priority and is evaluated first.

A) Or
B) Xor
C) Not
D) And
Question
What is the value of the MsgBoxStyle.OKOnly?

A) 0
B) 1
C) 2
D) 3
Question
A ____ structure is used to deal with different conditions that occur based on values entered into an application.

A) compound
B) logical
C) decision
D) baseline
Question
The ampersand (&)symbol is the operator used to ____ two strings together.

A) link
B) display
C) embed
D) concatenate
Question
The logical operator ____ reverses the logical value of a condition.

A) And
B) Or
C) Not
D) Nor
Question
Use the ____ statement to execute one set of instructions if the condition is true,and another set of instructions if the condition is false.

A) Do…While
B) If…Then
C) If...Then...Else
D) Not…If
Question
The business traveling rule,"If the flight costs less than $300.00 and the hotel is less than $120.00 per night" is an illustration of ____ conditions.

A) continuous
B) compound
C) contiguous
D) grouped
Question
To use multiple conditions in a single If...Then...Else statement,____ conditions are required.

A) range
B) compound
C) indexed
D) logical
Question
In an expression using the logical operator ____,as soon as one of the compound conditions is found to be true,no further conditions are tested and the expression evaluates to true.

A) Nor
B) AndAlso
C) OrElse
D) Xor
Question
An expression using the logical operator ____ will evaluate to true only when both of the conditions are true.

A) And
B) Or
C) Not
D) Nor
Question
An expression using the logical operator ____ will evaluate to true when either of the compound conditions is true.

A) And
B) Or
C) Not
D) Nor
Question
The ____ of a variable is defined by where it is declared within a program.

A) range
B) life
C) versatility
D) scope
Question
In an If...Then statement,the ____ symbol is used to test for inequality.

A) ><
B) !=
C) = =
D) <>
Question
A statement that tests a value is called a ____ statement.

A) conditional
B) scope
C) logical
D) range
Question
____ is the default setting for the buttons that will be displayed in a message box like the one in the accompanying figure.

A) MessageBoxButtons.OKOnly
B) MessageBoxButtons.OKCancel
C) MessageBoxButtons.YesNo
D) MessageBoxButtons.YesNoCancel
Question
An expression using the logical operator ____ evaluates to true when only one but not both of the two compound conditions are true.

A) Nor
B) OrElse
C) AndAlso
D) Xor
Question
What is the value of the MsgBoxStyle.OKCancel?

A) 0
B) 1
C) 2
D) 3
Question
Every If statement block must be terminated by the ____ keyword.

A) End If
B) If End
C) End
D) Not If
Question
When you want to move a GroupBox object,you must first move its contained objects.
Question
Developers can code Visual Basic applications to make decisions based on the input of users or other conditions that occur.
Question
When comparing two data values in Visual Basic,both values must be the same data type.
Question
Statements for a true condition and statements for a false condition can both be executed based on a single comparison.
Question
The ____ function is used to determine if an input value can be converted into a numeric value.

A) IsNumeric
B) IsNumber
C) IsInteger
D) IsQuantity
Question
Visual Basic contains a code library of almost ____ pieces of code called code snippets,inserted by the command shown in the accompanying figure.

A) 125
B) 250
C) 500
D) 750
Question
Within an event handler,an If...Then...Else statement is considered a block of code.
Question
Which of the following CANNOT be contained in a code snippet?

A) an entire program
B) code to send an e-mail message
C) an If…Then…Else decision structure
D) code to draw a circle
Question
To specify a continuous range of values to be tested in a Case statement within a Select Case structure,the word ____ must be used.

A) From
B) Range
C) To
D) Cont
Question
Often,during design time,you should set the Checked property for the most commonly selected RadioButton object to True to save the user from having to select the most common choice.
Question
If data analyzed by the IsNumeric function cannot be converted to a numeric data type,the function will return a value of ____.

A) NaN
B) NotNumber
C) False
D) null
Question
When RadioButton objects are contained in a group box,the user can select only one of the radio buttons on the panel.
Question
In an If...Then statement,the If keyword should appear on the first line with the conditional expression,and the Then keyword should appear on the second line.
Question
A Panel object can have a caption,but a GroupBox object cannot.
Question
To end a Select Case structure,a(n)____ statement is used.

A) End Select
B) End Case
C) Select End
D) Select Close
Question
It is important to ____ the line in the code editing window in the exact location where you want to insert a code snippet to produce the shortcut menu with the Insert Snippet command.

A) click
B) double-click
C) right-click
D) mouse over
Question
The IsNumeric function will return a(n)____ type value.

A) Boolean
B) Decimal
C) Double
D) Integer
Question
When relational operators are used in a Case statement within a Select Case structure,the keyword ____ must be used with the relational operator.

A) Is
B) From
C) Cont
D) To
Question
In an If...Then...Else statement,if the condition is false,the statements between the Else and End If keywords will be executed.
Question
In a Select Case structure,the ____ statement includes all conditions not specifically tested for in the other Case statements.

A) Case Other
B) Else
C) Case Else
D) All Else
Question
You can display a code snippet to ensure you understand the syntax and requirements for a given type of statement.
Question
A variable defined between the Then keyword and the Else keyword in an If...Then...Else structure can be referenced from within the Else section of the structure.
Question
Variables declared within a block of code can only be referenced within that block.
Question
You can create your own code snippets but they cannot be added to the library.
Question
In a Select Case statement,the keyword Is must be used when testing with relational operators.
Question
____________________ is the MsgBoxButtons argument that displays the Yes and No buttons.
Question
Each value in a Case statement is separated by a period.
Question
Message boxes like the ones in the accompanying figure also are known as ____________________ boxes. Message boxes like the ones in the accompanying figure also are known as ____________________ boxes.  <div style=padding-top: 35px>
Question
A Case statement in a Select Case structure can test for a range of values.
Question
A Case Else statement is required in a Select Case structure.
Question
____________________ is the MsgBoxButtons argument that,after an error occurs,allows the user to choose Retry or Cancel.
Question
In the era of IntelliSense,developers need no longer anticipate that users will enter invalid data.
Question
The default setting for the MessageBoxButtons argument of a message box will display only a(n)____________________ button in the message box.
Question
Only one condition can be tested in an If statement.
Question
The process of validating input data is fundamental to programming when using a graphical user interface.
Question
An End Case statement is used to terminate a Select Case structure.
Question
If a program attempts to process invalid data,unexpected errors can occur.
Question
In adding a code snippet,if you right-click outside the desired location for your code,the shortcut menu might list choices that are customized to that area of code and not include the code snippet for which you were searching.
Question
Each code snippet inserted by the command in the accompanying figure consists of a complete programming task.
Question
The ____________________ procedure found in the MessageBox class is used to display a message box,like the one in the accompanying figure.
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/112
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 5: Decision Structures
1
A condition can be true and false at the same time._________________________
False,cannot
2
A message box like the one shown in the accompanying figure is also known as a(n)____ box.
<strong>A message box like the one shown in the accompanying figure is also known as a(n)____ box.  </strong> A) alert B) dialog C) pop-up D) warning

A) alert
B) dialog
C) pop-up
D) warning
B
3
Which of the following is a feature of the Panel object?

A) caption
B) labeled border
C) scroll bars
D) none of the above
D
4
After the Not operator,the ____ logical operator has the next precedence.

A) And
B) Xor
C) AndAlso
D) Or
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
5
The Panel,GroupBox,and TabControl objects are examples of ____ objects.

A) compound
B) container
C) complex
D) group
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
6
In string comparison,a number is more than an uppercase letter._________________________
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
7
A RadioButton's Selected property will indicate if the radio button has been selected by the user._________________________
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
8
Of all the following objects provided by Visual Basic for Windows applications,the ____ object is used most often.

A) GroupBox
B) TabControl
C) FlowLayout
D) TableLayout
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
9
____ objects are used to gather related RadioButtons together so that the user can select one radio button from each group.

A) Container
B) Grouping
C) Layout
D) Cluster
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
10
The plus sign is the operator for concatenation._________________________
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
11
When using multiple ____ operators in an If statement,the order of precedence of the operators should be established through the use of parentheses.

A) relational
B) logical
C) concatenated
D) range
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
12
An If...Then statement can be used to compare an arithmetic expression to a(n)____.

A) logical operator
B) constant
C) other data type
D) arithmetic operator
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
13
An If...Then statement can be used to compare two string values._________________________
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
14
To display a message box window like the one in the accompanying figure,use the ____ procedure of the MessageBox class.

A) Display
B) Show
C) View
D) Visible
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
15
The Panel object performs in the same manner as the ____ object.

A) GroupBox
B) TabControl
C) FlowLayout
D) TableLayout
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
16
The ____ object provides several options not available with the Panel object.

A) GroupBox
B) TabControl
C) FlowLayout
D) TableLayout
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
17
When a condition is tested in a Visual Basic program,this is a possible outcome: ____.

A) the condition cannot be determined
B) the condition is true
C) the condition is constant
D) the condition is false
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
18
When the object indicated by a RadioButton is selected by the user,the ____ property changes from False to True.

A) Selected
B) Value
C) Checked
D) Input
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
19
A ____ object forces the user to select only one option from a group of options.

A) CheckBox
B) RadioButton
C) TextBox
D) CheckList
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
20
The ____ is a relational operator.

A) =
B) ?
C) >
D) <
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
21
To create a compound condition in an If statement,a(n)____ operator is required.

A) compound
B) logical
C) arithmetic
D) logical
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
22
In an expression using the logical operator ____,as soon as one of the compound conditions is found to be false,no further conditions are tested and the expression evaluates to false.

A) Nor
B) AndAlso
C) OrElse
D) Xor
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
23
The logical operator ____ has the highest priority and is evaluated first.

A) Or
B) Xor
C) Not
D) And
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
24
What is the value of the MsgBoxStyle.OKOnly?

A) 0
B) 1
C) 2
D) 3
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
25
A ____ structure is used to deal with different conditions that occur based on values entered into an application.

A) compound
B) logical
C) decision
D) baseline
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
26
The ampersand (&)symbol is the operator used to ____ two strings together.

A) link
B) display
C) embed
D) concatenate
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
27
The logical operator ____ reverses the logical value of a condition.

A) And
B) Or
C) Not
D) Nor
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
28
Use the ____ statement to execute one set of instructions if the condition is true,and another set of instructions if the condition is false.

A) Do…While
B) If…Then
C) If...Then...Else
D) Not…If
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
29
The business traveling rule,"If the flight costs less than $300.00 and the hotel is less than $120.00 per night" is an illustration of ____ conditions.

A) continuous
B) compound
C) contiguous
D) grouped
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
30
To use multiple conditions in a single If...Then...Else statement,____ conditions are required.

A) range
B) compound
C) indexed
D) logical
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
31
In an expression using the logical operator ____,as soon as one of the compound conditions is found to be true,no further conditions are tested and the expression evaluates to true.

A) Nor
B) AndAlso
C) OrElse
D) Xor
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
32
An expression using the logical operator ____ will evaluate to true only when both of the conditions are true.

A) And
B) Or
C) Not
D) Nor
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
33
An expression using the logical operator ____ will evaluate to true when either of the compound conditions is true.

A) And
B) Or
C) Not
D) Nor
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
34
The ____ of a variable is defined by where it is declared within a program.

A) range
B) life
C) versatility
D) scope
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
35
In an If...Then statement,the ____ symbol is used to test for inequality.

A) ><
B) !=
C) = =
D) <>
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
36
A statement that tests a value is called a ____ statement.

A) conditional
B) scope
C) logical
D) range
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
37
____ is the default setting for the buttons that will be displayed in a message box like the one in the accompanying figure.

A) MessageBoxButtons.OKOnly
B) MessageBoxButtons.OKCancel
C) MessageBoxButtons.YesNo
D) MessageBoxButtons.YesNoCancel
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
38
An expression using the logical operator ____ evaluates to true when only one but not both of the two compound conditions are true.

A) Nor
B) OrElse
C) AndAlso
D) Xor
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
39
What is the value of the MsgBoxStyle.OKCancel?

A) 0
B) 1
C) 2
D) 3
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
40
Every If statement block must be terminated by the ____ keyword.

A) End If
B) If End
C) End
D) Not If
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
41
When you want to move a GroupBox object,you must first move its contained objects.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
42
Developers can code Visual Basic applications to make decisions based on the input of users or other conditions that occur.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
43
When comparing two data values in Visual Basic,both values must be the same data type.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
44
Statements for a true condition and statements for a false condition can both be executed based on a single comparison.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
45
The ____ function is used to determine if an input value can be converted into a numeric value.

A) IsNumeric
B) IsNumber
C) IsInteger
D) IsQuantity
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
46
Visual Basic contains a code library of almost ____ pieces of code called code snippets,inserted by the command shown in the accompanying figure.

A) 125
B) 250
C) 500
D) 750
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
47
Within an event handler,an If...Then...Else statement is considered a block of code.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
48
Which of the following CANNOT be contained in a code snippet?

A) an entire program
B) code to send an e-mail message
C) an If…Then…Else decision structure
D) code to draw a circle
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
49
To specify a continuous range of values to be tested in a Case statement within a Select Case structure,the word ____ must be used.

A) From
B) Range
C) To
D) Cont
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
50
Often,during design time,you should set the Checked property for the most commonly selected RadioButton object to True to save the user from having to select the most common choice.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
51
If data analyzed by the IsNumeric function cannot be converted to a numeric data type,the function will return a value of ____.

A) NaN
B) NotNumber
C) False
D) null
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
52
When RadioButton objects are contained in a group box,the user can select only one of the radio buttons on the panel.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
53
In an If...Then statement,the If keyword should appear on the first line with the conditional expression,and the Then keyword should appear on the second line.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
54
A Panel object can have a caption,but a GroupBox object cannot.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
55
To end a Select Case structure,a(n)____ statement is used.

A) End Select
B) End Case
C) Select End
D) Select Close
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
56
It is important to ____ the line in the code editing window in the exact location where you want to insert a code snippet to produce the shortcut menu with the Insert Snippet command.

A) click
B) double-click
C) right-click
D) mouse over
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
57
The IsNumeric function will return a(n)____ type value.

A) Boolean
B) Decimal
C) Double
D) Integer
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
58
When relational operators are used in a Case statement within a Select Case structure,the keyword ____ must be used with the relational operator.

A) Is
B) From
C) Cont
D) To
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
59
In an If...Then...Else statement,if the condition is false,the statements between the Else and End If keywords will be executed.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
60
In a Select Case structure,the ____ statement includes all conditions not specifically tested for in the other Case statements.

A) Case Other
B) Else
C) Case Else
D) All Else
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
61
You can display a code snippet to ensure you understand the syntax and requirements for a given type of statement.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
62
A variable defined between the Then keyword and the Else keyword in an If...Then...Else structure can be referenced from within the Else section of the structure.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
63
Variables declared within a block of code can only be referenced within that block.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
64
You can create your own code snippets but they cannot be added to the library.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
65
In a Select Case statement,the keyword Is must be used when testing with relational operators.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
66
____________________ is the MsgBoxButtons argument that displays the Yes and No buttons.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
67
Each value in a Case statement is separated by a period.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
68
Message boxes like the ones in the accompanying figure also are known as ____________________ boxes. Message boxes like the ones in the accompanying figure also are known as ____________________ boxes.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
69
A Case statement in a Select Case structure can test for a range of values.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
70
A Case Else statement is required in a Select Case structure.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
71
____________________ is the MsgBoxButtons argument that,after an error occurs,allows the user to choose Retry or Cancel.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
72
In the era of IntelliSense,developers need no longer anticipate that users will enter invalid data.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
73
The default setting for the MessageBoxButtons argument of a message box will display only a(n)____________________ button in the message box.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
74
Only one condition can be tested in an If statement.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
75
The process of validating input data is fundamental to programming when using a graphical user interface.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
76
An End Case statement is used to terminate a Select Case structure.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
77
If a program attempts to process invalid data,unexpected errors can occur.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
78
In adding a code snippet,if you right-click outside the desired location for your code,the shortcut menu might list choices that are customized to that area of code and not include the code snippet for which you were searching.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
79
Each code snippet inserted by the command in the accompanying figure consists of a complete programming task.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
80
The ____________________ procedure found in the MessageBox class is used to display a message box,like the one in the accompanying figure.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 112 flashcards in this deck.