Declaring And Using Variables/Control Structures Flashcards

1
Q

Is a name given to a location in random access memory (ram)

A

Variable

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

Is used to declare variables and allocate storage piece

General declaration section at the top of the code module or immediately following a procedure declaration

A

Dim

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

Before we make use of the variables we need to declare first, in general case. the naming convention is that, name of variables

A

-begin with letter
-can contain an embedded period or embedded type declaration character
-must not exceed 255 characters
-must be unique within the scope which is the range from which the variable can reference a procedure, a form, so on.
-we can fix mix characters and numbers together

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

We make use of keywords “DIM” and “AS” to declare a variable

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

Allows you to control the flow of your programs execution

A

Control structure

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

Visual basic is an ___ programming language

A

Event driven

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

Response to specific action known as events

A

Program

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

Is any action performing by using any of input device primary mouse and keyboard

A

Event

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