When you create a new database, Access creates an empty table called _____.
A. Access Table1
B. Database Table1
C. New Table
D. Table1
Answer: D
You might also like to view...
When entering a date into the argument of the DATEADD function, the valid date must be enclosed in quotation marks
Indicate whether the statement is true or false
Suppose cType is a class template, which can take int as a parameter. The statement: ____ declares x to be an object of type cType, and the type passed to the classcType is int.
A. cType
How many times will the instruction in the loop body of the following code be processed? int x = 3; do { x++; } while (x
A. 0 B. 1 C. 2 D. infinite
If a function has the following prototype "int cmpYear (void* pYear1, void* pYear2);", what is the appropriate way to create a list that uses this function to compare the data nodes?
A. list = createList (cmpYear*); B. list = createList (&cmpYear); C. list = createList (*cmpYear); D. list = createList (cmpYear);