To define and apply a filter using the shortcut method, click inside the list range, then press ____.

A. [Ctrl][Shift][L]
B. [Ctrl][F]
C. [Shift][S]
D. [Alt][Shift][A]


Answer: A

Computer Science & Information Technology

You might also like to view...

Which of the following types are not built into the C++ language:

a. bool b. real c. short d. int e. long f. double

Computer Science & Information Technology

Which DISM option prevents files with reparse points outside the specified path from being captured?

A. CheckIntegrity B. Verify C. NoRpFix D. WIMboot

Computer Science & Information Technology

The __ filtering is used on a network to restrict access. This filtering would allow the administrator to specify how many MAC addresses a port can accept or to provide a whitelist of hardware addresses that will be accepted.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

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

A. The return type should be void, not void*. B. Its name should be BST_Retrieve. C. A call to _retrieve(tree,dataPtr,root) is needed. D. The case when the data is not in the tree is missing.

Computer Science & Information Technology