Match the following terms to their meanings:
I. Single quote (')
II. Macro Designer
III. Data Mode
IV. OpenForm
V. Macro named autoexec
A. Access automatically runs or executes the macro each time the database is opened
B. Action that opens a form in Form View by default
C. Argument used for forms that open in Form view or Datasheet view
D. Used before a text string, it identifies the text that follows as a comment
E. Allows you to build the list of actions to be carried out when the macro runs
D, E, C, B, A
You might also like to view...
What would be displayed if the following pseudocode was coded and executed, with salary = 400?
``` If salary > 400 Then Set bonus = 10 Set salary = salary + bonus End If Display salary ``` a. 10 b. 400 c. 410 d. nothing would display
If the value input for START is 8, how many times will the loop steps in instructions corresponding to the following pseudocode be executed?
``` Read START COUNT = START DOUNTIL COUNT < START COUNT = COUNT - 1 Write COUNT ENDDO ``` a) 0 b) 1 c) 8 d) infinite