CASE STUDY E-1Bertram has put together what might be the best company newsletter master page in the history of company newsletters. It's perfect, from the logo in the upper-right corner to the centered page number at the bottom. But while his master page might be perfect, he still needs to make the occasional change because a photo doesn't fit in a frame or a text item is too short. Bertram is a Windows user. What does he need to do in order to override all master page items?

A. Press and hold [Alt][L].
B. Press and hold [Alt][Shift][Ctrl][L].
C. Click Override Master Item in the Tools panel.
D. Press and hold [Alt][Shift][Ctrl][O].

Answer: B

Computer Science & Information Technology

You might also like to view...

What states are displayed in the list box by the following program segment?

``` Dim states() As String = {"Colorado", "New Mexico", "Arizona", "Utah"} Dim query = From state in states Order By state Ascending Select state lstBox.Items.Add(query.First) lstBox.Items.Add(query.Min) ``` (A) Arizona and Colorado (B) Arizona and Utah (C) Colorado and Arizona (D) Arizona and Arizona

Computer Science & Information Technology

An XML schema is often preferred over a DTD because:

a. while both define the structure of an XML document, the schema adds the ability to define and constrain the contents of elements b. The schema can be edited "on the fly" c. The DTD takes much longer to load when a page is accessed by a browser than is a schema is used d. DTDs may soon become deprecated

Computer Science & Information Technology