By default, the Normal style inserts a vertical space equal to ____ line(s) between each line of text.

A. 1
B. 1.15
C. 2
D. 2.15


Answer: A

Computer Science & Information Technology

You might also like to view...

Much of a program for a Web app runs on a distant computer, often called the ____.

A. cloud B. system C. network D. search

Computer Science & Information Technology

To open the Label Wizard, you click the Labels button in the:

A) Reports group on the Design tab. B) Tools group on the Design tab. C) Tools group on the Create tab. D) Reports group on the Create tab.

Computer Science & Information Technology

Which of the following statements about HTML is false?

A) It consists of a set of codes. B) It describes how a document will look in a Web browser. C) It is a set of rules for how documents are transferred on the Web. D) It had to be learned to create webpages in the early days of the Internet.

Computer Science & Information Technology

public static double secret(int first, double second){    double temp;    if (second > first)        temp = first * second;    else        temp = first - second;    return temp;}Based on the code in the accompanying figure, what would be the output of the following statement?System.out.println(secret(5, 7.0));

A. 5.0 B. 7.0 C. 2.0 D. 35.0

Computer Science & Information Technology