To modify the leading of selected text, use the ____ panel.

A. Character
B. Paragraph
C. Paragraph Styles
D. Character Styles


Answer: A

Computer Science & Information Technology

You might also like to view...

In a linked list implementation using a reference first to point to the first node of the list, a method isEmpty() can test to see if the list is empty by executing the statement(s)

A) return null; B) first = null; return first; C) if (isEmpty()) return true; else return false; D) return first == null;

Computer Science & Information Technology

A ____ test is a set of standard processing tasks that measure the performance of computer hardware or software.

A. benchmark B. superscalar C. HyperTransport D. cache memory

Computer Science & Information Technology

What is Math.ceil(3.6)?

a. 3.0 b. 3 c. 4.0 d. 5.0

Computer Science & Information Technology

Analyze the following code.

``` class Test { public static void main(String[] args) { String s; System.out.println("s is " + s); } } ``` a. The program has a compile error because s is not initialized, but it is referenced in the println statement. b. The program has a runtime error because s is not initialized, but it is referenced in the println statement. c. The program has a runtime error because s is null in the println statement. d. The program compiles and runs fine.

Computer Science & Information Technology