____ fonts are easy to read in printed material because the extra strokes lead your eye from one character to the next.

A. Serif
B. Monospace
C. Sans-serif
D. Cursive


Answer: A

Computer Science & Information Technology

You might also like to view...

Write statements that perform the one-dimensional-array operations:

Display the five values of integer array bestScores in column format.

Computer Science & Information Technology

Find the error(s) in the following code. The rectangleArray is an instance variable of type ArrayList, which contains MyRectangle objects.

``` 1 private void paintComponent( Graphics g ) 2 { 3 superclass.paintComponent( g ); 4 Iterator traverse = rectangleArray.iterator(); 5 6 while ( traverse.hasMoreElements() ) 7 { 8 MyRectangle currentRectangle = ( MyRectangle ) traverse.next(); 9 currentRectangle.drawMyRectangle( g ); 10 11 } // end while 12 13 } // end method paintComponent ```

Computer Science & Information Technology

Table width can be specified in one of two ways-in pixels or as ____.

A. inches B. centimeters C. points D. a percentage

Computer Science & Information Technology

It is acceptable to use current company letterhead for a job application letter.

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

Computer Science & Information Technology