Which is a tool used to identify words that do not appear in a word processing program’s dictionary?

A. grammar checker 
B. Flesch Reading Ease scorer
C. Flesch-Kincaid Grade Level scorer
D. spell checker


Answer: D

Computer Science & Information Technology

You might also like to view...

A C programmer should not use an expression like the one that follows because ______.

``` n = i + x * ++i; ``` a. the expression may produce different results on different ANSI C compilers b. it is illegal to have two consecutive operators c. the ++ operator cannot be used in combination with other arithmetic operators d. the increment operator cannot be used in the same expression as the addition operator e. none of the above

Computer Science & Information Technology

Which command executes the Java class file Welcome.class?

a. java welcome b. java Welcome.class c. java Welcome d. run Welcome.class

Computer Science & Information Technology

If after partitioning the pivot always ends up in the middle, which of the following will be the performance of quicksort?

a. O(n log n) b. O(n) c. O(n2) d. O(log n)

Computer Science & Information Technology

A company is experiencing a denial of service attack and wants to identify the source IP address of the attacker in real time. Which method is the BEST way to accomplish this?

A. Network sniffer B. Syslog C. SNMPv3 D. System logs

Computer Science & Information Technology