A preview of the page borders of a document show where?

A) at the top of the Borders dialog box
B) on the left side of the Borders and Shading dialog box
C) on the right side of the Borders and Shading dialog box
D) on the right side of the Borders dialog box


C

Computer Science & Information Technology

You might also like to view...

[CD] Markup the Java code listed in Fig. 5.12 using XML. Represent the if statement with element if—which contains one or more condition elements and one or more statement elements. Element condition contains the condition (e.g., m == month && d == day) and element statement contains the statements (e.g., resultDay = "DATE: D " + d + " M " + m). We have provided comments to the right of conditions and statements for easy identification. Element else represents an else statement in Java and contains one or more statement elements. Render the XML document in IE5.

Fig 5.12


```
if ( ( m == month && d == day ) || // m == month && d == day
( month == -1 && d == day ) || // month == -1 && d == day
( m == month && day == -1 ) || // m == month && day == -1
( month > -1 && day <= -1 ) ) { // month > -1 && day <= -1
resultDay = "DATE: D " + d + " M " + m; // a statement
processChildNodes(dateElement.getChildNodes());// a statement
}
else // else statement
return; // a statement
```

Computer Science & Information Technology

You can apply a built-in table style, modify an existing style, and apply borders, color, shading, and texture to emphasize the content of the cells within a table

Indicate whether the statement is true or false

Computer Science & Information Technology

Excel's Paste Options gallery does not include Live Preview

Indicate whether the statement is true or false

Computer Science & Information Technology

Image files with a .png extension work with any type of art work

Indicate whether the statement is true or false

Computer Science & Information Technology