CONGRATULATIONS!!!
ONLY
5
LESSONS
REMAIN!!!!
OBJECTIVES
This is a lesson which covers miscellaneous topics not previously covered.
OTHER TOPICS
1. The file that determines what files will be loaded into a project
whenever you open a new project is:
(a) AUTOLOAD.MAK
(b) AUTOLOAD.TXT
(c) CONSTANT.TXT
2. A file with FRM file extension is:
(a) A file that describes the form and its procedures in ASCII format.
(b) A file that describes the form and its procedures in binary format
(c) A file that describes the form and its procedures in either a
binary or ASCII format depending upon how the file was saved
3. The following declaration is used to declare an array:
Dim OurArray (7) As integer
Is the following statement correct?
OurArray(12) = 32
4. Is the variable MyVariable in the following statement passed ByVal
or by reference?
Result = Calculate( MyVariable)
(a) ByVal
(b) By reference
(c) Who cares?????
5. Is the variable MyVariable in the following function passed ByVal
or by reference?
Function Calculate (MyVCariable)
6. Is the variable MyVariable in the following function passed ByVal
or by reference?
Function Calculate (ByVal MyVcariable)
TEST YOUR PROGRESS
BACK TO HOMEPAGE