Computer Short Quiz Flashcards

1
Q

It is a set of one or more program statements that can be executed by referring to the procedure name.

A

Procedure

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

Used to specify the end of the sub procedure block.

A

End Sub

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

Always appear before the end statement

A

Exit Sub and Return Statements

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

Does not return a value. It can take arguments such as constants, variables and expressions that are passed to it by calling a code.

A

Sub Procedure

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

A block of code enclosed within the Sub and End Sub statements.

A

Subroutine

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

Also considered a sub program that may be invoked or used in a program.

A

Subroutine

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

Setting properties needed to make an interface

A

One form
Three Textboxes
Three Labels
Two Buttons

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

These are values that are passed to the subroutine.

A

Parameter

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

Can be defined by having a set number of parameters.

A

Subroutine

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

An object declared with this keyword is accessible from anywhere within and outside of the application. This is the default access mode.

A

Public

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

An object declared with this keyword is accessible only from within its own class or derived class.

A

Protected

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

The object will be accessible from within the program that contains its declaration and from anywhere else in the assembly.

A

Friend

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

The object will be accessible from within the same assembly and in the derived classes.

A

Protected Friend

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

An object declared with this keyword is accessible only from within its declaration context, including any nested procedures.

A

Access Modifiers

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

defines the accessibility of a procedure or function ​

A

Access Modifier

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

values passed to the parameters of a procedure or function ​

A

Arguments

17
Q

variables found within the signature of a procedure or function ​

A

Parameter

18
Q

Sets the input focus to the button.

A

Focus

19
Q

Hides the button from the form.

A

Hide

20
Q

Reloads the button on the form.

A

Refresh

21
Q

Displays the button on the form.

A

Show