For words not found in the dictionary, the ____ displays a list of possible corrections.
A. thesaurus
B. grammar checker
C. spelling checker
D. dictionary
Answer: C
You might also like to view...
An ActionEvent must be handled by an object called an ActionListener.
Answer the following statement true (T) or false (F)
The IPv4 address 192.168.12.2 is an example of which address format?
What will be an ideal response?
Solver enables you to add a maximum of three constraints using the Solver Parameters dialog box
Indicate whether the statement is true or false
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.