Which of the following is not a suggestion given in the chapter for formatting text in a newsletter?

A) Vary font size, but not font style.
B) Use bold and italics sparingly.
C) Make headings at least two points larger than body text.
D) Limit the use of upper case and underlining.


A

Computer Science & Information Technology

You might also like to view...

Given the function definition

void something ( int a, int& b ) { int c; c = a + 2; a = a * 3; b = c + a; } what is the output of the following code fragment that invokes something? (All variables are of type int.) r = 1; s = 2; t = 3; something(t, s); cout << r << ' ' << s << ' ' << t << endl; a. 1 14 3 b. 1 10 3 c. 5 14 3 d. 1 14 9

Computer Science & Information Technology

A(n) ____________________ represents an appointment that is scheduled over a period of days.

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

Computer Science & Information Technology

A data collector set is a collection of statistics captured and viewed in real time.

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

Computer Science & Information Technology

Which certificate provides a mechanism for recovering files encrypted with EFS if there is a problem with the user’s original private key?

a. Escrow certificate b. Recovery certificate c. Administrator certificate d. Root certificate

Computer Science & Information Technology