Describe why a document may need to be divided into two or more sections.

What will be an ideal response?


By using sections, you can format parts of a document independently of other sections. For instance, you may want to separate sections of the same document to change the page orientation or to add columns or different layouts.

Computer Science & Information Technology

You might also like to view...

Examine the overall size of your game on screen (pixel by pixel). What percentage of your screen real estate should be dedicated to your user interface?

What will be an ideal response?

Computer Science & Information Technology

If you enter 1 2 3, when you run this program, what will be the output?

``` import java.util.Scanner; public class Test1 { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.print("Enter three numbers: "); double number1 = input.nextDouble(); double number2 = input.nextDouble(); double number3 = input.nextDouble(); // Compute average double average = (number1 + number2 + number3) / 3; // Display result System.out.println(average); } } ``` a. 1.0 b. 2.0 c. 3.0 d. 4.0

Computer Science & Information Technology

SkyDrive users get a(n) ________ file storage quota by default

Fill in the blank(s) with correct word

Computer Science & Information Technology

Synchronization of media events is difficult because:

a. there is no established standard for multimedia frame rates as there is for audio CDs. b. users can adjust the playback rates on their computers. c. performance varies widely among different development and delivery computers. d. authoring systems do not provide any simple mechanism for determining when a media element begins and ends. e. solar flares affect playback rates.

Computer Science & Information Technology