McGraw-Hill OnlineMcGraw-Hill Higher EducationLearning Center
Student Center | Instructor Center | Information Center | Home
Intro to VB.NET
Projects
Comprehensive Projects
Chapter Objectives
PowerPoint Presentations
Multiple Choice Quiz
True or False
Examples from the TextA
Feedback
Help Center


Learning Programming Using Visual Basic.Net
Bill Burrows, University of Washington
Joe Lanford, University of Rochester

Reducing Program Complexity: Programmer-Defined Procedures and Functions

True or False



1

Passing parameters to a called procedure is a good way of making your procedures more reusable and generic so that a wide variety of other procedures can utilize them.
A)True.
B)False.
2

A procedure can receive more than one parameter, provided that the parameter list specifies 4 things: number of arguments, sequence of the arguments, names of the arguments, and whether or not the parameter is made into a local copy.
A)True.
B)False.
3

In order for an argument and parameter of a called procedure to both reference the same variable (meaning that the value of the variable can be changed by the called procedure), you must pass the parameter using the ByVal keyword.
A)True.
B)False.
4

The main difference between a modal and modeless form is the method used to display the form on the screen (formname.Show() as opposed to fornmane.ShowDialog()).
A)True.
B)False.
5

A collection of reusable code modules arranged by task or category and grouped together for easy access by other developers and programs is called a library.
A)True.
B)False.




McGraw-Hill/Irwin