Often, an Office application will identify a word as misspelled that is not actually misspelled. How can that happen? If a word is flagged as misspelled, how can you correct it (or ignore it if it is not actually an error)?

What will be an ideal response?


If a word is unrecognized, it is flagged as misspelled or grammatically incorrect. Misspellings are identified with a red wavy underline, grammatical problems are underlined in green, and word usage errors have a blue underline. If you right-click a word or phrase that is identified as a mistake, you will see a shortcut menu. If the application's dictionary can make a suggestion as to the correct spelling, you can click to accept the suggestion and make the change. If a grammatical rule is violated, you will have an opportunity to select a correction. However, if the text is actually correct, you can click Ignore or Ignore All (to bypass all occurrences of the flagged error in the current document). Click Add to Dictionary if you want the word to be considered correct whenever it appears in all documents. Similar selections on a shortcut menu enable you to ignore grammatical mistakes if they are not errors.

Computer Science & Information Technology

You might also like to view...

Analyze the following code.

``` // Program 1 public class Test { public static void main(String[] args) { Object a1 = new A(); Object a2 = new A(); System.out.println(((A)a1).equals((A)a2)); } } class A { int x; public boolean equals(A a) { return this.x == a.x; } } // Program 2 public class Test { public static void main(String[] args) { A a1 = new A(); A a2 = new A(); System.out.println(a1.equals(a2)); } } class A { int x; public boolean equals(A a) { return this.x == a.x; } }``` a. Program 1 displays true and Program 2 displays true b. Program 1 displays false and Program 2 displays true c. Program 1 displays true and Program 2 displays false d. Program 1 displays false and Program 2 displays false

Computer Science & Information Technology

Class methods can reference only instance variables, never static variables.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Examples of company-wide applications, called _____, include order processing systems, payroll systems, and company communications networks.?

A. ?enterprise applications B. ?network operating systems (NOS) C. ?operating applications D. ?legacy systems

Computer Science & Information Technology

When you don't know the specific value to include in the criteria, you use a ____.

A. limited query B. tagged query C. structured query D. parameter query

Computer Science & Information Technology