The space between each letter can be changed using _____.

A. spacing
B. kerning
C. font size
D. intervaling


Answer: B

Computer Science & Information Technology

You might also like to view...

Assuming the following function definition, which of the following statements is false?

def rectangle_area(length=2, width=3):
    """Return a rectangle's area."""
    return length * width
a. You specify a default parameter value by following a parameter’s name with an = and a value. b. Any parameters with default parameter values must appear in the parameter list to the right of parameters that do not have defaults. c. For the following call, the interpreter passes the default parameter value 3 for the width as if you had called rectangle_area(3, 10): rectangle_area(10) d. The following call to rectangle_area has arguments for both length and width, so IPython- ignores the default parameter values: rectangle_area(10, 5)

Computer Science & Information Technology

The command cut -f 1,3 Xfile

a: displays the first or third field in the Xfile b: displays the first and third fields in the Xfile c: displays the first, second and third fields in the Xfile d: removes the first and third fields from the Xfile e: displays all fields except the first, second and third fields in the Xfile

Computer Science & Information Technology

Under MS-DOS, interrupts originate with __________.

a. hardware b. software c. neither A nor B d. either A or B

Computer Science & Information Technology

The tag is a

a. Collection tag b. Affinity tag c. Identification tag d. none of the above

Computer Science & Information Technology