Match the Access options dialog box category with the best choice.

A. Sets default interface, file format, default database folder, and user name options
B. Determines whether the windows are overlapping or tabbed and whether the database compacts on close
C. Determines the default gridlines, cell effects, and fonts
D. Determines default Design View settings; also provides default error-checking options
E. Provides a way to manage trusted publishers, locations, documents, and macro settings


A. General
B. Current Database
C. Datasheet
D. Object Designers
E. Trust Center

Computer Science & Information Technology

You might also like to view...

Moving through a neighborhood trying to locate open wireless access points is called ________

A) surfing B) trolling C) hacking D) wardriving

Computer Science & Information Technology

When you are creating bookmarks in a Web page document, it is important to always create a bookmark at the top of the page

Indicate whether the statement is true or false

Computer Science & Information Technology

The summary calculation that calculates the total of all values in the field is ____.

A. COUNT B. AVG C. SUM D. MIN

Computer Science & Information Technology

What is wrong with the following function?void* _retrieve (AVL_TREE* tree, void* keyPtr, NODE* root){   if (tree->compare(keyPtr, root->dataPtr) < 0)      return _retrieve(tree, keyPtr, root->left);   else if (tree->compare(keyPtr, root->dataPtr) > 0)      return _retrieve(tree, keyPtr, root->right);   else      return root->dataPtr;   } // if root}

A. It is missing one recursive call to _retrieve. B. The first if should be "if (tree->compare(keyPtr, root->dataPtr) < 0)". C. The second if should be "if (tree->compare(keyPtr, root->dataPtr) >= 0)". D. It does not check if the data is not in the tree.

Computer Science & Information Technology