Which of the following is the correct path for inserting the page number in the header of a two-page letter?

A. Header & Footer Tools/Page Number/Current Position/Plain Number 1
B. Header & Footer Tools/Page Number/Top of Page/Plain Number 1
C. Insert/Header & Footer/Page Number/Top of Page
D. Do not use a path; key the #2 after the word Page.


Answer: A

Computer Science & Information Technology

You might also like to view...

Use the following statements to complete the code in Figure 12.32 to animate an image called water-balloon.png falling down.

a.
Your browser does not support canvas.

b. var myCanvas = document.getElementById("gameCanvas");
var myContext = myCanvas.getContext("2d");
c. var balloon = new Image();
balloon.src = "images/water-balloon.png";
d. var y = 0;
e. main();
f. balloon.onload = function () {
startGame();
};
g. updateGame();
h. window.requestAnimationFrame(drawGame);
i. y += 2;
j. window.setTimeout(updateGame, 33);
k. myContext.clearRect(0, 0, myCanvas.width, myCanvas.height);
l. myContext.drawImage(balloon, 300, y);
m. window.requestAnimationFrame(drawGame);

Computer Science & Information Technology

Suggest a scheme for balancing the load on a set of computers. You should discuss: i) what user or system requirements are met by such a scheme; ii) to what categories of applications it is suited; iii) how to measure load and with what accuracy; and iv) how to monitor load and choose the location for a new process. Assume that processes may not be migrated. How would your design be affected if processes could be migrated between computers? Would you expect process migration to have a significant cost?

What will be an ideal response?

Computer Science & Information Technology

If you delete three footnotes in a document, you must manually renumber the remaining footnotes

Indicate whether the statement is true or false

Computer Science & Information Technology

When you click the frame border of a drawing canvas and click the Delete button, the canvas and all of its contents will be removed

Indicate whether the statement is true or false

Computer Science & Information Technology