Case WD 6-1Hilary has been assigned to put together a financial report that will be presented at the next sales meeting. Which process should Hilary use to insert a footnote?
A. Click the References tab, then click the Insert Footnote button.
B. Position the insertion point where she wants to insert the note reference mark, click the References tab, then click the Insert Footnote button.
C. Position the insertion point where she wants to insert the note reference mark, click the Insert tab, then click the Insert Footnote button.
D. Position the insertion point where she wants to insert the note reference mark, click the References tab, then click the Insert Endnote button.
Answer: B
You might also like to view...
To create a split form, you click Split Form in the:
A) Forms group on the Controls tab. B) Tools group on the Create tab. C) Forms group on the Create tab. D) Tools group on the Controls tab.
The only way to create an e-mail hyperlink is to click Hyperlink in the Links group, select E-mail Address, and then type the e-mail address
Indicate whether the statement is true or false
Essential to agile programming are stated ________ and principles that create the context for collaboration among programmers and customers.
A) scopes B) values C) prototypes D) feedback
Based on the dangling-else discussion state the output for each of the following code snippets when x is 9 and y is 11 and when x is 11 and y is 9. We eliminated the indentation from the following code to make the problem more challenging.
``` if (x < 10) if (y > 10) cout << "*****" << endl; else cout << "#####" << endl; cout << "$$$$$" << endl; ```