Chapter 5 - Final Flashcards

1
Q

RadioButton

A

when you have only one selection per group.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Conditional Statement

A

The statement that tests the radio button

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Logical Operators

A

an If statement that processes the rule,

Examples: And, Or, and Not.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Decision Structure Types

A

If…Then
If…Then…Else
Select Case

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Decision Structure General Format

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Decision Structure Uses

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Logical Operator And

A

All conditions tested in the If statement must be true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Logical Operator Or

A

One condition tested in the If Statement must be correct

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Logical Operator Not

A

Negates a condition

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

IsNumeric Function

A

can check the input value to determine if it can be converted into a numeric value such as an Integer or Decimal datatype.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly