Deck 13: Creating Modules and Vba

Full screen (f)
exit full mode
Question
You use a(n) quotation mark to begin a comment line. _____
Use Space or
up arrow
down arrow
to flip the card.
Question
A sub procedure triggered by an event is often called an event handler.
Question
The End Function statement appears in blue.
Question
A function created in a standard module can be used in any query in the database.
Question
VBA uses different colors to mean different things.
Question
Use the On Got Cursor event when you want to trigger when a procedure when a control gets the focus.
Question
Visual Basic for Applications (VBA) is only available for Microsoft Access.
Question
You would most likely create a function in a class module.
Question
DoCmd is a VBA object that supports many methods to run common Access commands such as closing windows or opening forms.
Question
In VBA, normal text is black.
Question
Declaration statements return a value.
Question
In VBA, syntax error text is green.
Question
A function created in a standard module can be used in any query in the database. _____
Question
VBA is written in Visual Basic Design View .
Question
As you write a VBA statement, IntelliSense technology helps you complete it.
Question
You must enable content before you run VBA.
Question
Class modules automatically travel with the object that stores it.
Question
The Else portion of an If...Then...Else construct is executed only if the expression is evaluated false.
Question
The End If statement is needed to mark the end of the If block of code.
Question
In VBA, comment text is black.
Question
In VBA, keyword text is ____.

A) Blue
B) Black
C) Red
D) Green
Question
AutoStart is a special macro name that automatically executes when a database first opens. ____________________
Question
In VBA, an object is any item that can be used or manipulated. ____________________
Question
This type of procedure performs a series of VBA statements, but is not used in an expression.

A) Argument
B) Method
C) Sub
D) Module
Question
Which VBA keyword(s) is required as the last statement of a sub procedure?

A) End
B) Sub End
C) End Sub
D) Sub
Question
Which of the following is NOT a type of module?

A) Class
B) Procedure
C) Standard
D) None of the above are modules.
Question
Click the gray bar to the right of the VBA statement to toggle breakpoints on and off. _____
Question
This type of module is stored as a part of the form or report in which it was created.

A) Standard
B) Class
C) Function
D) Sub
Question
Syntax errors in the Visual Basic Editor window are the most difficult type of error to find. _____
Question
VBA stands for ____.

A) Visual Basic for Access
B) Virtual Basic for Access
C) Visual Basic for Applications
D) Virtual Basic for Applications
Question
The On Advance event of a form is triggered when you navigate through records.
Question
Which of the following is NOT a type of procedure?

A) Declaration
B) Sub
C) Function
D) None of the above are procedures.
Question
GoToControl is an example of a(n) ____.

A) Object
B) Module
C) Procedure
D) Method
Question
When you type a colon after the DoCmd object, IntelliSense technology helps you complete the statement.
Question
Standard modules are also called universal modules. ___________________
Question
Which of the following is NOT a built-in Access function?

A) Sub
B) Sum
C) Pmt
D) Now
Question
This type of procedure manipulates controls and objects.

A) Sub
B) Argument
C) Method
D) Declaration
Question
This type of procedure is generally executed when an event occurs.

A) Method
B) Sub
C) Module
D) Declaration
Question
When you encounter a run-time error, VBA will stop execution of your procedure at the line in which the error occurred. _____
Question
This type of module is stored within a particular form or report.

A) Function
B) Sub
C) Argument
D) Class
Question
These types of errors occur after the code starts to run and include attempting an illegal operation, such as dividing by zero.

A) Compile-time
B) Syntax
C) Run-time
D) Logic
Question
_____ statements precede procedure statements and help set rules for how the statements in the module are processed.
Question
Why would you use the Zoom dialog box when creating an expression?

A) You must use the Zoom dialog box when entering VBA in an expression.
B) You must use the Zoom dialog box when entering SQL in an expression.
C) The Zoom dialog box gives you more room to enter an expression.
D) The Zoom dialog box precalculates the answer to an expression.
Question
Debug means to ____.

A) Write code using the Command Button Wizard
B) Find and resolve errors in code
C) Use conditional expressions in code
D) Use If...Then...Else statements in code
Question
Which statement declares a variable, a named storage location that contains data that can be modified during program execution.

A) Const
B) Var
C) Sub
D) Dim
Question
Visual Basic code is stored in a database object called a(n) _____.
Question
Standard modules are also called  _____  modules.

A) universal
B) global
C) typical
D) ordinary
Question
This character separates multiple arguments in a function.

A) Period
B) Comma
C) Semicolon
D) Colon
Question
A(n) _____ is a procedure that returns a value.
Question
Which of the following VBA keywords is a declaration statement that determines the way string values (text) will be sorted?

A) Option Compare Database
B) Option Compare Text
C) On Text GoTo
D) Select Case
Question
Which VBA keyword(s) declares the name and arguments that create a new function procedure?

A) Function
B) Start Function
C) Dim Function
D) Option Function
Question
Forgetting an End If statement would be an example of which type of programming error?

A) Syntax
B) Run-time
C) Compile-time
D) Debug
Question
This function returns today's date.

A) TodayDate
B) TodaysDate
C) Day
D) Now
Question
Which procedure is triggered after a field is updated?

A) On Got Focus
B) After Update
C) Current Record
D) Current Field
Question
You can create a comment by starting the statement with a(n) _____ statement.

A) rem
B) aloc
C) dim
D) var
Question
It is common for VBA programmers to use _____-character prefixes to name objects and controls.

A) two
B) three
C) four
D) five
Question
_____ are used to store data that can be used, modified, or displayed during the execution of a procedure.

A) Variables
B) Constructs
C) Arguments
D) Dimensions
Question
Which VBA keyword(s) is required as the last statement of a function procedure?

A) End Procedure
B) End Function
C) Option Procedure
D) Option Function
Question
Comment lines are preceded by a(n) ____.

A) Period
B) Exclamation point
C) Right parentheses
D) Apostrophe
Question
This VBA keyword(s) specifies the location of where the procedure should continue if an error occurs in the execution.

A) On Error Continue
B) GoTo Error
C) Error End
D) On Error GoTo
Question
Match between columns
An object that stores VBA code
Method
An object that stores VBA code
Procedure
An object that stores VBA code
Argument
An object that stores VBA code
Object
An object that stores VBA code
Module
An action that an object can perform
Method
An action that an object can perform
Procedure
An action that an object can perform
Argument
An action that an object can perform
Object
An action that an object can perform
Module
A constant, variable, or expression needed by a procedure to execute
Method
A constant, variable, or expression needed by a procedure to execute
Procedure
A constant, variable, or expression needed by a procedure to execute
Argument
A constant, variable, or expression needed by a procedure to execute
Object
A constant, variable, or expression needed by a procedure to execute
Module
A series of VBA statements that performs an operation
Method
A series of VBA statements that performs an operation
Procedure
A series of VBA statements that performs an operation
Argument
A series of VBA statements that performs an operation
Object
A series of VBA statements that performs an operation
Module
Any item that can be identified or manipulated
Method
Any item that can be identified or manipulated
Procedure
Any item that can be identified or manipulated
Argument
Any item that can be identified or manipulated
Object
Any item that can be identified or manipulated
Module
Question
Kelsey and Matt are in the same advanced Access class and have teamed up to help each other understand VBA.  In order to prepare for the VBA test, each has created a multiple choice quiz for the other. Some of Kelsey's questions are shown below. Which of the following types of procedures is generally stored in standard modules vs. class modules?
A. Functions
B. Subs
C. Subroutines
D. Declaration statements
Question
Which is easier to create, a macro or a module, and why?
Question
_____ modules are displayed as module objects in the Navigation Pane.
Question
In what situations must you use a macro instead of a module?
Question
The prefix ____________________ is short for Basic and applies to standard modules.
Question
Name three reasons you must use a module rather than a macro.
Question
Kelsey and Matt are in the same advanced Access class and have teamed up to help each other understand VBA.  In order to prepare for the VBA test, each has created a multiple choice quiz for the other. Some of Kelsey's questions are shown below. Why do forms generally contain more VBA than reports?
A. They generally show one record of data at a time.
B. The user interacts with forms more than reports.
C. They store Structured Query Language.
D. They may contain expressions that calculate new pieces of information.
Question
Aaron and Jeff are in the same advanced Access class and have teamed up to help each other understand VBA.  In order to prepare for the VBA test, each has created a quiz for the other. Two of Aaron's questions are shown below. Which of the following contains the term that is described by the following statement?
"Declares a variable, a named storage location that contains data that can be modified during program execution."
A. Option Explicit
B. Option Compare Database
C. Dim
D. Private Sub
Question
Aaron and Jeff are in the same advanced Access class and have teamed up to help each other understand VBA.  In order to prepare for the VBA test, each has created a quiz for the other. Two of Aaron's questions are shown below. Which of the following defines a breakpoint?
A. Run-time error that stops execution in the immediate window
B. Bookmark that stops execution at that statement
C. Syntax error that must be debugged
D. Immediate window that provides more information about the procedure
Question
Kelsey and Matt are in the same advanced Access class and have teamed up to help each other understand VBA.  In order to prepare for the VBA test, each has created a multiple choice quiz for the other. Some of Kelsey's questions are shown below. Which of the following objects may not store class modules?
A. Queries
B. Forms
C. Reports
D. Each may store VBA
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/71
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 13: Creating Modules and Vba
1
You use a(n) quotation mark to begin a comment line. _____
False
2
A sub procedure triggered by an event is often called an event handler.
True
3
The End Function statement appears in blue.
True
4
A function created in a standard module can be used in any query in the database.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
5
VBA uses different colors to mean different things.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
6
Use the On Got Cursor event when you want to trigger when a procedure when a control gets the focus.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
7
Visual Basic for Applications (VBA) is only available for Microsoft Access.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
8
You would most likely create a function in a class module.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
9
DoCmd is a VBA object that supports many methods to run common Access commands such as closing windows or opening forms.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
10
In VBA, normal text is black.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
11
Declaration statements return a value.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
12
In VBA, syntax error text is green.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
13
A function created in a standard module can be used in any query in the database. _____
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
14
VBA is written in Visual Basic Design View .
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
15
As you write a VBA statement, IntelliSense technology helps you complete it.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
16
You must enable content before you run VBA.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
17
Class modules automatically travel with the object that stores it.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
18
The Else portion of an If...Then...Else construct is executed only if the expression is evaluated false.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
19
The End If statement is needed to mark the end of the If block of code.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
20
In VBA, comment text is black.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
21
In VBA, keyword text is ____.

A) Blue
B) Black
C) Red
D) Green
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
22
AutoStart is a special macro name that automatically executes when a database first opens. ____________________
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
23
In VBA, an object is any item that can be used or manipulated. ____________________
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
24
This type of procedure performs a series of VBA statements, but is not used in an expression.

A) Argument
B) Method
C) Sub
D) Module
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
25
Which VBA keyword(s) is required as the last statement of a sub procedure?

A) End
B) Sub End
C) End Sub
D) Sub
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
26
Which of the following is NOT a type of module?

A) Class
B) Procedure
C) Standard
D) None of the above are modules.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
27
Click the gray bar to the right of the VBA statement to toggle breakpoints on and off. _____
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
28
This type of module is stored as a part of the form or report in which it was created.

A) Standard
B) Class
C) Function
D) Sub
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
29
Syntax errors in the Visual Basic Editor window are the most difficult type of error to find. _____
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
30
VBA stands for ____.

A) Visual Basic for Access
B) Virtual Basic for Access
C) Visual Basic for Applications
D) Virtual Basic for Applications
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
31
The On Advance event of a form is triggered when you navigate through records.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
32
Which of the following is NOT a type of procedure?

A) Declaration
B) Sub
C) Function
D) None of the above are procedures.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
33
GoToControl is an example of a(n) ____.

A) Object
B) Module
C) Procedure
D) Method
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
34
When you type a colon after the DoCmd object, IntelliSense technology helps you complete the statement.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
35
Standard modules are also called universal modules. ___________________
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
36
Which of the following is NOT a built-in Access function?

A) Sub
B) Sum
C) Pmt
D) Now
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
37
This type of procedure manipulates controls and objects.

A) Sub
B) Argument
C) Method
D) Declaration
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
38
This type of procedure is generally executed when an event occurs.

A) Method
B) Sub
C) Module
D) Declaration
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
39
When you encounter a run-time error, VBA will stop execution of your procedure at the line in which the error occurred. _____
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
40
This type of module is stored within a particular form or report.

A) Function
B) Sub
C) Argument
D) Class
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
41
These types of errors occur after the code starts to run and include attempting an illegal operation, such as dividing by zero.

A) Compile-time
B) Syntax
C) Run-time
D) Logic
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
42
_____ statements precede procedure statements and help set rules for how the statements in the module are processed.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
43
Why would you use the Zoom dialog box when creating an expression?

A) You must use the Zoom dialog box when entering VBA in an expression.
B) You must use the Zoom dialog box when entering SQL in an expression.
C) The Zoom dialog box gives you more room to enter an expression.
D) The Zoom dialog box precalculates the answer to an expression.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
44
Debug means to ____.

A) Write code using the Command Button Wizard
B) Find and resolve errors in code
C) Use conditional expressions in code
D) Use If...Then...Else statements in code
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
45
Which statement declares a variable, a named storage location that contains data that can be modified during program execution.

A) Const
B) Var
C) Sub
D) Dim
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
46
Visual Basic code is stored in a database object called a(n) _____.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
47
Standard modules are also called  _____  modules.

A) universal
B) global
C) typical
D) ordinary
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
48
This character separates multiple arguments in a function.

A) Period
B) Comma
C) Semicolon
D) Colon
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
49
A(n) _____ is a procedure that returns a value.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
50
Which of the following VBA keywords is a declaration statement that determines the way string values (text) will be sorted?

A) Option Compare Database
B) Option Compare Text
C) On Text GoTo
D) Select Case
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
51
Which VBA keyword(s) declares the name and arguments that create a new function procedure?

A) Function
B) Start Function
C) Dim Function
D) Option Function
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
52
Forgetting an End If statement would be an example of which type of programming error?

A) Syntax
B) Run-time
C) Compile-time
D) Debug
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
53
This function returns today's date.

A) TodayDate
B) TodaysDate
C) Day
D) Now
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
54
Which procedure is triggered after a field is updated?

A) On Got Focus
B) After Update
C) Current Record
D) Current Field
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
55
You can create a comment by starting the statement with a(n) _____ statement.

A) rem
B) aloc
C) dim
D) var
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
56
It is common for VBA programmers to use _____-character prefixes to name objects and controls.

A) two
B) three
C) four
D) five
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
57
_____ are used to store data that can be used, modified, or displayed during the execution of a procedure.

A) Variables
B) Constructs
C) Arguments
D) Dimensions
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
58
Which VBA keyword(s) is required as the last statement of a function procedure?

A) End Procedure
B) End Function
C) Option Procedure
D) Option Function
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
59
Comment lines are preceded by a(n) ____.

A) Period
B) Exclamation point
C) Right parentheses
D) Apostrophe
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
60
This VBA keyword(s) specifies the location of where the procedure should continue if an error occurs in the execution.

A) On Error Continue
B) GoTo Error
C) Error End
D) On Error GoTo
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
61
Match between columns
An object that stores VBA code
Method
An object that stores VBA code
Procedure
An object that stores VBA code
Argument
An object that stores VBA code
Object
An object that stores VBA code
Module
An action that an object can perform
Method
An action that an object can perform
Procedure
An action that an object can perform
Argument
An action that an object can perform
Object
An action that an object can perform
Module
A constant, variable, or expression needed by a procedure to execute
Method
A constant, variable, or expression needed by a procedure to execute
Procedure
A constant, variable, or expression needed by a procedure to execute
Argument
A constant, variable, or expression needed by a procedure to execute
Object
A constant, variable, or expression needed by a procedure to execute
Module
A series of VBA statements that performs an operation
Method
A series of VBA statements that performs an operation
Procedure
A series of VBA statements that performs an operation
Argument
A series of VBA statements that performs an operation
Object
A series of VBA statements that performs an operation
Module
Any item that can be identified or manipulated
Method
Any item that can be identified or manipulated
Procedure
Any item that can be identified or manipulated
Argument
Any item that can be identified or manipulated
Object
Any item that can be identified or manipulated
Module
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
62
Kelsey and Matt are in the same advanced Access class and have teamed up to help each other understand VBA.  In order to prepare for the VBA test, each has created a multiple choice quiz for the other. Some of Kelsey's questions are shown below. Which of the following types of procedures is generally stored in standard modules vs. class modules?
A. Functions
B. Subs
C. Subroutines
D. Declaration statements
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
63
Which is easier to create, a macro or a module, and why?
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
64
_____ modules are displayed as module objects in the Navigation Pane.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
65
In what situations must you use a macro instead of a module?
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
66
The prefix ____________________ is short for Basic and applies to standard modules.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
67
Name three reasons you must use a module rather than a macro.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
68
Kelsey and Matt are in the same advanced Access class and have teamed up to help each other understand VBA.  In order to prepare for the VBA test, each has created a multiple choice quiz for the other. Some of Kelsey's questions are shown below. Why do forms generally contain more VBA than reports?
A. They generally show one record of data at a time.
B. The user interacts with forms more than reports.
C. They store Structured Query Language.
D. They may contain expressions that calculate new pieces of information.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
69
Aaron and Jeff are in the same advanced Access class and have teamed up to help each other understand VBA.  In order to prepare for the VBA test, each has created a quiz for the other. Two of Aaron's questions are shown below. Which of the following contains the term that is described by the following statement?
"Declares a variable, a named storage location that contains data that can be modified during program execution."
A. Option Explicit
B. Option Compare Database
C. Dim
D. Private Sub
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
70
Aaron and Jeff are in the same advanced Access class and have teamed up to help each other understand VBA.  In order to prepare for the VBA test, each has created a quiz for the other. Two of Aaron's questions are shown below. Which of the following defines a breakpoint?
A. Run-time error that stops execution in the immediate window
B. Bookmark that stops execution at that statement
C. Syntax error that must be debugged
D. Immediate window that provides more information about the procedure
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
71
Kelsey and Matt are in the same advanced Access class and have teamed up to help each other understand VBA.  In order to prepare for the VBA test, each has created a multiple choice quiz for the other. Some of Kelsey's questions are shown below. Which of the following objects may not store class modules?
A. Queries
B. Forms
C. Reports
D. Each may store VBA
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 71 flashcards in this deck.