What does Access use as the default tab name on a navigation form?

A) There is no default name assigned to navigation tabs.
B) Name of each form or report
C) Tab 1, Tab 2, etc.
D) Page 1, Page 2, etc.

B

Computer Science & Information Technology

You might also like to view...

which assigns the string theName to myAccounts’s Name property. Which of the following is false regarding when property Name is invoked by the expression myAccount.Name on the left of an assignment?

``` myAccount.Name = theName; ``` a) The app transfers program execution to Name’s set accessor. b) Property Name’s set accessor performs its task—that is, it stores in the myAccount object’s name instance variable the string value that was assigned to property Name. c) When Name’s set accessor completes execution, program control returns to where the Name property was accessed, then execution continues at the next statement. d) All of the above are true.

Computer Science & Information Technology

The ________ abstract classes are Unicode character-based streams.

a. Reader and Writer b. BufferedReader and BufferedWriter c. CharArrayReader and CharArrayWriter d. UnicodeReader and UnicodeWriter

Computer Science & Information Technology