Case-Based Critical Thinking QuestionsCase 2-1Abby has selected fonts in the past for her Web sites without knowing much about them, so she has resolved to learning more about them so that she can make even more informed choices in the future. If Abby wants to present a series of sans serif fonts, she can use all of the following EXCEPT ____.

A. Verdana
B. Geneva
C. Tahoma
D. New York

Answer: D

Computer Science & Information Technology

You might also like to view...

Packaging data methods and members into a single well-defined programming unit is known as

a) overriding. b) data hiding. c) encapsulation. d) classification.

Computer Science & Information Technology

Find the errors in the following code segments and explain how to correct them.

``` switch (n) { case 1: cout << "The number is 1" << endl; case 2: cout << "The number is 2" << endl; break; default: cout << "The number is not 1 or 2" << endl; } ```

Computer Science & Information Technology