The space between characters is called ____.

A. kerning
B. leading
C. tracking
D. weighing


Answer: A

Computer Science & Information Technology

You might also like to view...

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

1. When a program is executed, array element indices are checked for validity—all indices must be greater than or equal to 0 and less than or equal to the length of the array. 2. ComboBox property ItemSource specifies the source of the items displayed in the ComboBox. 3. String method Replace receives two arguments—the substring that should be replaced throughout the original String and the replacement substring. 4. To pass an array argument to a method, specify the name of the array followed by empty parentheses. 5. An individual element of an integer array is passed to a method by value.

Computer Science & Information Technology

You have an image of a person placed exactly where you want it on a layout. Unfortunately, the person in the photo is pointing—and leading the reader’s eye—right off the page. You decide to fix the problem by flipping the photo horizontally so that the image will point into the page. However, every time you use the transform panel to flip the image, the actual location of the image frame also moves. How can you remedy this situation, so that the picture is flipped and remains in exactly the same spot?

What will be an ideal response?

Computer Science & Information Technology

What is the output of the following code?

``` import java.util.*; public class Test { public static void main(String[] args) { List list1 = new ArrayList<>(); list1.add("Atlanta"); list1.add("Macon"); list1.add("Savanna"); List list2 = new ArrayList<>(); list2.add("Atlanta"); list2.add("Macon"); list2.add("Savanna"); List list3 = new ArrayList<>(); list3.add("Macon"); list3.add("Savanna"); list3.add("Atlanta"); System.out.println(list1.equals(list2) + " " + list1.equals(list3)); } }``` a. true true b. true false c. false false d. false true

Computer Science & Information Technology

____ is a server-side scripting language, commonly used to create dynamic Web pages.

A. HTML B. ActiveX C. PHP D. Javascript

Computer Science & Information Technology