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 is the matrix product m ? n?
Given the matrices m and n below: ``` m 3 7 10 n 1 0 0 2 4 6 0 1 0 1 2 3 0 0 1 ``` What will be an ideal response?
XML and XSL files are combined in a(n) _______, where they’re converted to HTML for display in a browser.
Fill in the blank(s) with the appropriate word(s).
Analyze the following code fragments that assign a boolean value to the variable even.
``` Code 1: if (number % 2 == 0) even = true; else even = false; Code 2: even = (number % 2 == 0) ? true: false; Code 3: even = number % 2 == 0; ``` a. Code 2 has a compile error, because you cannot have true and false literals in the conditional expression. b. Code 3 has a compile error, because you attempt to assign number to even. c. All three are correct, but Code 1 is preferred. d. All three are correct, but Code 2 is preferred. e. All three are correct, but Code 3 is preferred.
ShieldsUP and LeakTest are software programs you can use to test whether ________
A) your firewall is working correctly B) your computer is a zombie C) you have a memory leak D) packets arrive at their intended destinations