To view all comments and edits made to a document, as well as statistics regarding the changes made, you can:

A) click Show Markup in the Tracking group on the Review tab.
B) open the Simple Markup dialog box.
C) open the Reviewing Pane.
D) click Compare in the Compare group on the Review tab.


C

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1) Every XML document must contain exactly one root element. 2) XML is case sensitive. 3) The XML declaration identifies the document as an XML document. 4) Unlike C# programs, blank lines and indentations cannot be used to improve readability in XML. 5) XML elements are nested to form hierarchies.

Computer Science & Information Technology

Convert the following decimal numbers into binary.

i. 0 ii. 1 iii. 2 iv. 3 v. 12 vi. 123 vii. 11 viii. 111 ix. 128 x. 255

Computer Science & Information Technology

Which of the following is the correct expression that evaluates to true if the number x is between 1 and 100 or the number is negative?

``` a. 1 < x < 100 && x < 0 b. ((x < 100) && (x > 1)) || (x < 0) c. ((x < 100) && (x > 1)) && (x < 0) d. (1 > x > 100) || (x < 0) ```

Computer Science & Information Technology

The clocked circuit below is an arbiter. Suppose two devices 1 and 2 can request a resource such as a bus at any instant. The problem is to ensure that only one requester is granted the resource, even if both requests are made simultaneously. The circuit of Figure P12.20 has two request inputs plus a clock and two grant outputs. Explain how the circuit is able to perform its function reliably. Note that the circuit uses edge?triggered flip?flops and that it is immune to metastablilty.

Computer Science & Information Technology