You need to configure both the client computer and the ________to use the Offline Files feature

a. BIOS
b. File system
c. Server
d. IP configuration

C. When you enable Offline Files, the feature makes anything you have cached from the network available to you. When you reconnect to the network, the feature automatically synchronizes any changes with the version on the network.

Computer Science & Information Technology

You might also like to view...

Suppose a try block needs to be followed by two catch blocks, each catching a different exception. Which exception should be caught first?

a) The exception that is more likely to occur b) The exception that is more general c) The exception that is more specific d) It does not matter in what order exceptions are caught

Computer Science & Information Technology

Which if statement would be true if you needed to see if x (an int) was less than 5 and y (an int) was greater than 7?

A. if ( x < 5 || y > 7 ) B. if ( x < 5 && y > 7 ) C. if ( x <= 5 || y >7 ) D. if( x < 5 && y < 7)

Computer Science & Information Technology