Which of the following statements concerning readability is false?

A. Green text on yellow is considered to be effective.
B. Italicized Arial is considered to be the most ineffective.
C. Black text on gray is considered to be very readable.
D. Arial is more readable than Times New Roman.

Answer: D

Computer Science & Information Technology

You might also like to view...

Given the class definition:

class CreateDestroy { public: CreateDestroy() { cout << "constructor called, "; } ~CreateDestroy() { cout << "destructor called, "; } }; What will the following program output? int main() { CreateDestroy c1; CreateDestroy c2; return 0; } a. constructor called, destructor called, constructor called, destructor called, b. constructor called, destructor called, c. constructor called, constructor called, d. constructor called, constructor called, destructor called, destructor called,

Computer Science & Information Technology

A local pizzeria that has been around for more than forty years, keeps adjusting to new conditions and altering their practices.  Such behavior is known as ____.

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

Computer Science & Information Technology