To details about workbook changes, including insertions and deletions, you can control the collaboration process by using Excel's:

A) review changes feature. B) highlight feature.
C) collaboration feature. D) Track Changes feature.

D

Computer Science & Information Technology

You might also like to view...

The collection of Registry settings and files associated with a user's desktop interface that is created the first time a user logs on to a computer is a ________

a. Local user profile b. Temporary user profile c. Theme d. None of the above

Computer Science & Information Technology

What will be printed after the following code is executed?

``` String str = "abc456"; int m = 0; while ( m < 6 ) { if (Character.isLetter(str.charAt(m))) System.out.print( Character.toUpperCase(str.charAt(m))); m++; } ``` a. abc456 b. ABC456 c. ABC d. 456

Computer Science & Information Technology