Deck 12: Creating Macros

Full screen (f)
exit full mode
Question
Which of the following tasks is a good candidate for a macro?

A) Printing several reports
B) Modifying the design of a form
C) Building ad hoc reports
D) Creating graphs
Use Space or
up arrow
down arrow
to flip the card.
Question
Fixing a broken macro generally involves breaking it down into smaller pieces that can be individually tested.
Question
You cannot override existing Access key combinations such as [Ctrl][C] for copy with an Access AutoKey assignment.
Question
By default, an Access database is trusted.
Question
Some arguments, such as the Title argument can be left empty.
Question
You can assign a macro to a Ribbon or shortcut menu.
Question
It's common to put command buttons in the Form Footer so that users have a consistent location to find them.
Question
Arguments change depending upon the action chosen.
Question
You can assign a macro to a command button using the Command Button Wizard.
Question
If statements  may contain Else If and Else clauses.
Question
A conditional expression determines whether a macro action will execute or not.
Question
Macro actions are evaluated based on their order in the Macro Design View window, starting at the bottom.
Question
Arguments provide ____.

A) Conditional expressions that evaluate to true or false
B) Additional information on how to carry out an action
C) A way to store many macros together in a group
D) A list of events that are associated with each control on a form
Question
____ is a major benefit of using macros.

A) Saving paper
B) Improving accuracy
C) Eliminating forms and reports
D) Redesigning the database
Question
Data macros appear in the Macros group in the Navigation Pane.
Question
In Access macros, conditional expressions are used in If statements.
Question
All Access events are triggered by the user.
Question
Which of the following is NOT a benefit of using macros?

A) Decreases the number of objects required in the database
B) Increases efficiency by automating routine tasks
C) Increases accuracy by flagging data entry errors
D) Improves flexibility by connecting forms and reports together through command buttons
Question
An action block can be expanded or collapsed to view or hide details in Macro Design View.
Question
An entry in a field can be used to initiate the execution of a macro.
Question
Which of the following is NOT a valid table event for a data macro?

A) After Got Focus
B) After Insert
C) After Update
D) Before Delete
Question
Which of the following would not constitute an event?

A) Adding an action to a macro
B) Clicking a command button
C) Opening a form
D) Closing a form
Question
A(n) ____ is something that happens to a form, window, toolbar, or control that can be used to initiate the execution of a macro.

A) Action
B) Event
C) Argument
D) Submacro
Question
Which argument of the MessageBox macro action determines the icon in the dialog box that is created?

A) Message
B) View
C) Type
D) Title
Question
Each macro task has a specified set of ____ that provide additional information on how to carry out the task.

A) Actions
B) Arguments
C) Events
D) None of the above
Question
Which argument of the MessageBox macro action determines the text in the dialog box that is created?

A) Message
B) View
C) Type
D) Title
Question
On Click is an example of a(n) ____.

A) Event property
B) Bound control
C) Command Button Wizard option
D) Macro action
Question
The click of a command button or making an entry in a field would be considered a(n) ____.

A) Macro
B) Action
C) Condition
D) Event
Question
Which argument of the OpenReport macro action determines the report that is opened?

A) Report Name
B) Title
C) View
D) On Click
Question
A(n) ____ is a collection of actions within a macro object that allows you to name and create multiple, separate macros within a single macro object.

A) Action
B) Event
C) Argument
D) Submacro
Question
The best way to make a macro obviously available for many different forms would be to ____.

A) Click the Run button from the Database Tools tab
B) Run the macro from Macro Design View
C) Assign the macro to a command button on the first form the user opens
D) Assign the macro to the Ribbon
Question
[Forms]![CustomerEntry]![CustPhone] is an example of _____ notation.

A) exclamation
B) conditional
C) macro
D) bang
Question
Which of the following is NOT a common macro action?

A) DeleteRecord
B) SaveRecord
C) OpenForm
D) CloseDesignView
Question
Which argument of the MessageBox macro action determines the text in the Title Bar of the dialog box that is created?

A) Message
B) View
C) Type
D) Title
Question
ApplyFilter, RunCommand, Close, and OpenReport are examples of macro ____.

A) Actions
B) Arguments
C) Groups
D) Conditions
Question
A(n) ____ expression results in a true or false answer.

A) Action
B) Conditional
C) Group
D) Mathematical
Question
OpenReport is an Access macro ____.

A) Action
B) Event
C) Condition
D) Group
Question
The event property that is most commonly used with a command button is the _____ property.

A) Push
B) Hover
C) Select
D) On Click
Question
A common three-character prefix for command buttons is _____.

A) com
B) mmm
C) cmd
D) btt
Question
In a macro, to refer to a value of a control on a form in a conditional expression, use the following syntax: ____.

A) {Forms}!{formname}!{controlname}
B) [Forms]![formname]![controlname]
C) Forms.(formname).(controlname)
D) Forms.formname(controlname)
Question
A table macro allows you to embed macro capabilities directly in a table.
Question
A(n) _____ database allows you to run macros and VBA.
Question
The _____ button executes the selected Access macro.
Question
Which of the following is NOT an argument for the SetProperty action?

A) View
B) Control Name
C) Property
D) Value
Question
Explain the difference between a data macro and a traditional macro object in terms of how the macro is created, stored, and triggered.
Question
A(n) _____ is a database object that stores and executes a series of Access actions.
Question
You can assign a key combination to a macro by creating a macro with the name _____.
Question
To permanently trust a database, store the database in a trusted _____.
Question
Name three ways that you can run a macro.
Question
Conditional expressions result in a numeric value. _____
Question
A(n) _____ macro allows you to embed macro capabilities directly in a table to add, change, or delete data based on conditions you specify.
Question
The _____ Catalog lists all available macro actions organized by category.
Question
The action _____ organizes all of the arguments for a current action and is visually highlighted with a rectangle and gray background in Macro Design View.
Question
____ is a useful Access macro action because it opens a report.
Question
List four of the major benefits of using macros.
Question
You most often run a data macro based on a table event .
Question
A macro may contain one or more _____, the tasks that you want Access to perform.
Question
A(n) _____ is a specific activity that occurs within the database, such as clicking a command button, moving from record to record, editing data, or opening and closing a form.
Question
A secure database allows you to run macros and VBA.
Question
The On _____ event occurs when focus moves from one record to another.
Question
When creating a command button, make sure the Control Wizards button is selected in order to invoke the Command Button Wizard.
Question
To permanently trust a database, store the database in a trusted folder.
Question
Match between columns
Allows you to document the macro with explanatory text
Comment
Allows you to document the macro with explanatory text
Action Catalog
Allows you to document the macro with explanatory text
If statement
Allows you to document the macro with explanatory text
Arguments
Allows you to document the macro with explanatory text
Run button
Contains conditional expressions that are evaluated either true or false
Comment
Contains conditional expressions that are evaluated either true or false
Action Catalog
Contains conditional expressions that are evaluated either true or false
If statement
Contains conditional expressions that are evaluated either true or false
Arguments
Contains conditional expressions that are evaluated either true or false
Run button
Lists required and optional arguments for the selected action
Comment
Lists required and optional arguments for the selected action
Action Catalog
Lists required and optional arguments for the selected action
If statement
Lists required and optional arguments for the selected action
Arguments
Lists required and optional arguments for the selected action
Run button
Lists all of the macro actions organized by category
Comment
Lists all of the macro actions organized by category
Action Catalog
Lists all of the macro actions organized by category
If statement
Lists all of the macro actions organized by category
Arguments
Lists all of the macro actions organized by category
Run button
Executes the selected macro
Comment
Executes the selected macro
Action Catalog
Executes the selected macro
If statement
Executes the selected macro
Arguments
Executes the selected macro
Run button
Question
You can slow step a macro, which means to run it one action at a time to observe the effect of each specific action.
Question
You have inherited a database with several macros.  Explain why attaching macros to command buttons is a superior way to run a macro as compared to running it from the Database Tools tab on the Ribbon.
Question
You are a busy information technology (IT) specialist at a well-known accounting firm. You work with departments throughout the company to help them solve problems and simplify computer tasks.
One of your coworkers asks you to explain the difference between Excel and Access with regard to creating macros and VBA.  What do you tell him?
Question
A conditional expression is an expression that results in a true or false value.
Question
You have been asked to troubleshoot a macro that doesn't work. Explain why single stepping a macro helps you solve the problem.
Question
Defragging means determining why a macro doesn't run correctly.
Question
You are a busy information technology (IT) specialist at a well-known accounting firm. You work with departments throughout the company to help them solve problems and simplify computer tasks.
The Payroll department needs you to improve its database's ease of use by adding some kind of audible warning sound and an automatic message to tell the user when a data entry mistake has been made.  What are the names of the two macro actions you would use in a macro to achieve this?
Question
You are a busy information technology (IT) specialist at a well-known accounting firm. You work with departments throughout the company to help them solve problems and simplify computer tasks.
You are asked to automate some routine tasks for the Accounts Payable department.  These are:
a. Finding the first record that meets certain criteria
b. Maximizing an active window to fill the Access window
c. Closing a window
What are the names of the 3 macro actions you would use in a macro to complete these tasks?
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 12: Creating Macros
1
Which of the following tasks is a good candidate for a macro?

A) Printing several reports
B) Modifying the design of a form
C) Building ad hoc reports
D) Creating graphs
A
2
Fixing a broken macro generally involves breaking it down into smaller pieces that can be individually tested.
True
3
You cannot override existing Access key combinations such as [Ctrl][C] for copy with an Access AutoKey assignment.
False
4
By default, an Access database is trusted.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
5
Some arguments, such as the Title argument can be left empty.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
6
You can assign a macro to a Ribbon or shortcut menu.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
7
It's common to put command buttons in the Form Footer so that users have a consistent location to find them.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
8
Arguments change depending upon the action chosen.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
9
You can assign a macro to a command button using the Command Button Wizard.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
10
If statements  may contain Else If and Else clauses.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
11
A conditional expression determines whether a macro action will execute or not.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
12
Macro actions are evaluated based on their order in the Macro Design View window, starting at the bottom.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
13
Arguments provide ____.

A) Conditional expressions that evaluate to true or false
B) Additional information on how to carry out an action
C) A way to store many macros together in a group
D) A list of events that are associated with each control on a form
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
14
____ is a major benefit of using macros.

A) Saving paper
B) Improving accuracy
C) Eliminating forms and reports
D) Redesigning the database
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
15
Data macros appear in the Macros group in the Navigation Pane.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
16
In Access macros, conditional expressions are used in If statements.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
17
All Access events are triggered by the user.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
18
Which of the following is NOT a benefit of using macros?

A) Decreases the number of objects required in the database
B) Increases efficiency by automating routine tasks
C) Increases accuracy by flagging data entry errors
D) Improves flexibility by connecting forms and reports together through command buttons
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
19
An action block can be expanded or collapsed to view or hide details in Macro Design View.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
20
An entry in a field can be used to initiate the execution of a macro.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
21
Which of the following is NOT a valid table event for a data macro?

A) After Got Focus
B) After Insert
C) After Update
D) Before Delete
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
22
Which of the following would not constitute an event?

A) Adding an action to a macro
B) Clicking a command button
C) Opening a form
D) Closing a form
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
23
A(n) ____ is something that happens to a form, window, toolbar, or control that can be used to initiate the execution of a macro.

A) Action
B) Event
C) Argument
D) Submacro
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
24
Which argument of the MessageBox macro action determines the icon in the dialog box that is created?

A) Message
B) View
C) Type
D) Title
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
25
Each macro task has a specified set of ____ that provide additional information on how to carry out the task.

A) Actions
B) Arguments
C) Events
D) None of the above
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
26
Which argument of the MessageBox macro action determines the text in the dialog box that is created?

A) Message
B) View
C) Type
D) Title
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
27
On Click is an example of a(n) ____.

A) Event property
B) Bound control
C) Command Button Wizard option
D) Macro action
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
28
The click of a command button or making an entry in a field would be considered a(n) ____.

A) Macro
B) Action
C) Condition
D) Event
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
29
Which argument of the OpenReport macro action determines the report that is opened?

A) Report Name
B) Title
C) View
D) On Click
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
30
A(n) ____ is a collection of actions within a macro object that allows you to name and create multiple, separate macros within a single macro object.

A) Action
B) Event
C) Argument
D) Submacro
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
31
The best way to make a macro obviously available for many different forms would be to ____.

A) Click the Run button from the Database Tools tab
B) Run the macro from Macro Design View
C) Assign the macro to a command button on the first form the user opens
D) Assign the macro to the Ribbon
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
32
[Forms]![CustomerEntry]![CustPhone] is an example of _____ notation.

A) exclamation
B) conditional
C) macro
D) bang
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
33
Which of the following is NOT a common macro action?

A) DeleteRecord
B) SaveRecord
C) OpenForm
D) CloseDesignView
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
34
Which argument of the MessageBox macro action determines the text in the Title Bar of the dialog box that is created?

A) Message
B) View
C) Type
D) Title
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
35
ApplyFilter, RunCommand, Close, and OpenReport are examples of macro ____.

A) Actions
B) Arguments
C) Groups
D) Conditions
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
36
A(n) ____ expression results in a true or false answer.

A) Action
B) Conditional
C) Group
D) Mathematical
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
37
OpenReport is an Access macro ____.

A) Action
B) Event
C) Condition
D) Group
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
38
The event property that is most commonly used with a command button is the _____ property.

A) Push
B) Hover
C) Select
D) On Click
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
39
A common three-character prefix for command buttons is _____.

A) com
B) mmm
C) cmd
D) btt
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
40
In a macro, to refer to a value of a control on a form in a conditional expression, use the following syntax: ____.

A) {Forms}!{formname}!{controlname}
B) [Forms]![formname]![controlname]
C) Forms.(formname).(controlname)
D) Forms.formname(controlname)
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
41
A table macro allows you to embed macro capabilities directly in a table.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
42
A(n) _____ database allows you to run macros and VBA.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
43
The _____ button executes the selected Access macro.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
44
Which of the following is NOT an argument for the SetProperty action?

A) View
B) Control Name
C) Property
D) Value
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
45
Explain the difference between a data macro and a traditional macro object in terms of how the macro is created, stored, and triggered.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
46
A(n) _____ is a database object that stores and executes a series of Access actions.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
47
You can assign a key combination to a macro by creating a macro with the name _____.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
48
To permanently trust a database, store the database in a trusted _____.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
49
Name three ways that you can run a macro.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
50
Conditional expressions result in a numeric value. _____
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
51
A(n) _____ macro allows you to embed macro capabilities directly in a table to add, change, or delete data based on conditions you specify.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
52
The _____ Catalog lists all available macro actions organized by category.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
53
The action _____ organizes all of the arguments for a current action and is visually highlighted with a rectangle and gray background in Macro Design View.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
54
____ is a useful Access macro action because it opens a report.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
55
List four of the major benefits of using macros.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
56
You most often run a data macro based on a table event .
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
57
A macro may contain one or more _____, the tasks that you want Access to perform.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
58
A(n) _____ is a specific activity that occurs within the database, such as clicking a command button, moving from record to record, editing data, or opening and closing a form.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
59
A secure database allows you to run macros and VBA.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
60
The On _____ event occurs when focus moves from one record to another.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
61
When creating a command button, make sure the Control Wizards button is selected in order to invoke the Command Button Wizard.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
62
To permanently trust a database, store the database in a trusted folder.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
63
Match between columns
Allows you to document the macro with explanatory text
Comment
Allows you to document the macro with explanatory text
Action Catalog
Allows you to document the macro with explanatory text
If statement
Allows you to document the macro with explanatory text
Arguments
Allows you to document the macro with explanatory text
Run button
Contains conditional expressions that are evaluated either true or false
Comment
Contains conditional expressions that are evaluated either true or false
Action Catalog
Contains conditional expressions that are evaluated either true or false
If statement
Contains conditional expressions that are evaluated either true or false
Arguments
Contains conditional expressions that are evaluated either true or false
Run button
Lists required and optional arguments for the selected action
Comment
Lists required and optional arguments for the selected action
Action Catalog
Lists required and optional arguments for the selected action
If statement
Lists required and optional arguments for the selected action
Arguments
Lists required and optional arguments for the selected action
Run button
Lists all of the macro actions organized by category
Comment
Lists all of the macro actions organized by category
Action Catalog
Lists all of the macro actions organized by category
If statement
Lists all of the macro actions organized by category
Arguments
Lists all of the macro actions organized by category
Run button
Executes the selected macro
Comment
Executes the selected macro
Action Catalog
Executes the selected macro
If statement
Executes the selected macro
Arguments
Executes the selected macro
Run button
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
64
You can slow step a macro, which means to run it one action at a time to observe the effect of each specific action.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
65
You have inherited a database with several macros.  Explain why attaching macros to command buttons is a superior way to run a macro as compared to running it from the Database Tools tab on the Ribbon.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
66
You are a busy information technology (IT) specialist at a well-known accounting firm. You work with departments throughout the company to help them solve problems and simplify computer tasks.
One of your coworkers asks you to explain the difference between Excel and Access with regard to creating macros and VBA.  What do you tell him?
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
67
A conditional expression is an expression that results in a true or false value.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
68
You have been asked to troubleshoot a macro that doesn't work. Explain why single stepping a macro helps you solve the problem.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
69
Defragging means determining why a macro doesn't run correctly.
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
70
You are a busy information technology (IT) specialist at a well-known accounting firm. You work with departments throughout the company to help them solve problems and simplify computer tasks.
The Payroll department needs you to improve its database's ease of use by adding some kind of audible warning sound and an automatic message to tell the user when a data entry mistake has been made.  What are the names of the two macro actions you would use in a macro to achieve this?
Unlock Deck
Unlock for access to all 71 flashcards in this deck.
Unlock Deck
k this deck
71
You are a busy information technology (IT) specialist at a well-known accounting firm. You work with departments throughout the company to help them solve problems and simplify computer tasks.
You are asked to automate some routine tasks for the Accounts Payable department.  These are:
a. Finding the first record that meets certain criteria
b. Maximizing an active window to fill the Access window
c. Closing a window
What are the names of the 3 macro actions you would use in a macro to complete these tasks?
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.