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

Computer Science & Information Technology

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

Computer Science & Information Technology

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 x; B. cType int x; C. cType int = x; D. cType int :: x;

Computer Science & Information Technology

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

Computer Science & Information Technology

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);

Computer Science & Information Technology