________ keeps track of all additions, deletions, and formatting changes made to a document
A) The table of contents
B) All Markup
C) The Reviewing Pane
D) Track Changes
D
Computer Science & Information Technology
You might also like to view...
Write in C++ code:
age is outside the range p to q
Computer Science & Information Technology
Which of the following lines of code accesses the second element of the first array in a two-dimensional array of integers, numbers, and stores the result in a variable called num?
a)``` num = numbers[1][2]; ``` b)``` num = numbers[0][1]; ``` c)``` num = numbers.getElement(1, 2); ``` d)``` num = numbers.getElement(0, 1); ``` e)``` none of the above are correct ```
Computer Science & Information Technology