If a flagged word is spelled correctly, right-click it and then click ____ on the shortcut menu to instruct Word not to flag future occurrences of the same word in this document.
A. Not a Mistake
B. Correct Spelling
C. Do Not Correct
D. Ignore All
Answer: D
You might also like to view...
Which of the following using statements is equivalent to the preceding code segment
``` { var exampleObject = new ExampleClass(); try { exampleObject.SomeMethod(); } finally { if (exampleObject != null) { exampleObject.Dispose(); } } } ``` try using (var exampleObject = new ExampleClass()) { exampleObject.SomeMethod(); // do something with exampleObject exampleObject.Dispose(); }
When naming cells, the rows are indicated by letters and the columns by numbers
Indicate whether the statement is true or false
The following JavaScript code is a repetition statement.if (age >= 18 && age <= 65) { document.write("The age is between 18 and 65." + BR);}
Answer the following statement true (T) or false (F)
RE: is commonly used to mean ________.
a. regarding b. receiver c. responding d. replying