Computer Short Quiz Flashcards
It is a set of one or more program statements that can be executed by referring to the procedure name.
Procedure
Used to specify the end of the sub procedure block.
End Sub
Always appear before the end statement
Exit Sub and Return Statements
Does not return a value. It can take arguments such as constants, variables and expressions that are passed to it by calling a code.
Sub Procedure
A block of code enclosed within the Sub and End Sub statements.
Subroutine
Also considered a sub program that may be invoked or used in a program.
Subroutine
Setting properties needed to make an interface
One form
Three Textboxes
Three Labels
Two Buttons
These are values that are passed to the subroutine.
Parameter
Can be defined by having a set number of parameters.
Subroutine
An object declared with this keyword is accessible from anywhere within and outside of the application. This is the default access mode.
Public
An object declared with this keyword is accessible only from within its own class or derived class.
Protected
The object will be accessible from within the program that contains its declaration and from anywhere else in the assembly.
Friend
The object will be accessible from within the same assembly and in the derived classes.
Protected Friend
An object declared with this keyword is accessible only from within its declaration context, including any nested procedures.
Access Modifiers
defines the accessibility of a procedure or function
Access Modifier