Chapter 5 - Final Flashcards
RadioButton
when you have only one selection per group.
Conditional Statement
The statement that tests the radio button
Logical Operators
an If statement that processes the rule,
Examples: And, Or, and Not.
Decision Structure Types
If…Then
If…Then…Else
Select Case
Decision Structure General Format
If Then
(condition is true - do all of the actions
coded in this branch)
Else
(condition is false - do all of the actions
coded in this branch)
End If
Decision Structure Uses
Based on what the user inputs a true or false statement. The application makes a decision if what the user inputs a false statement, then the application does a certain action if true another action.
Logical Operator And
All conditions tested in the If statement must be true
Logical Operator Or
One condition tested in the If Statement must be correct
Logical Operator Not
Negates a condition
IsNumeric Function
can check the input value to determine if it can be converted into a numeric value such as an Integer or Decimal datatype.