L14: Working with Variables Flashcards

1
Q

a declaration telling VB that you’re setting up a variable

A

Dim

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

VB looks for the name of your variable

A

Number1

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

tells VB that the variable is going to be a number or an integer

A

As Integer

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

it means “assign a value of”

A

=

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

no other part of the program can see this code except for our button

A

private

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

short for Subroutine, tells VB that some code follows and needs to be executed

A

sub

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

subroutine ends here, signifies end of code

A

end sub

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

variables that can also be names or texts

A

string variables

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