Chapter 16: I Hear You Are Breaking Up (Sub Procedures)
TRUE/FALSE
1. An event procedure is a set of Visual Basic instructions that are processed when a specific event (such
as the Click event) occurs.
2. You can use an independent Sub procedure to avoid duplicating code when different sections of a
program need to perform the same task.
3. Independent Sub procedures are not used extensively in large and complex programs, which typically
are written by a team of programmers.
4. In a sub procedure, a set of parentheses that contains an optional procedure name follows the
parameter list in the procedure header.
5. You can invoke a Sub procedure using the Invoke statement.
6. Each argument represents an item of information that is passed to the procedure when the procedure is
invoked.
7. An independent Sub procedure can contain one or more parameters in its procedure header.
8. In a sub procedure, the number of arguments in the Call statement do not have to agree with the
number of parameters in the procedure list.
9. Every variable declared in an application has both a value and a unique address that represents the
location of the variable in the computer’s internal memory.
10. When only the contents of a variable are passed, the receiving procedure is given access to the variable
in memory.