You work in the Accounting department and have been using a network drive to post Excel workbook files to your file server as you complete them. When you attempt to save a workbook file to the drive, you see the error message: "You do not have access to the folder 'J:\'. See your administrator for access to this folder." What should you do first? Second? Explain the reasoning behind your choices.
a. Ask your network administrator to give you permission to access the folder.
b. Check File Explorer to verify that you can connect to the network.
c. Save the workbook file to your hard drive.
d. Using File Explorer, remap the network drive.
e. Reboot your PC.
Answer:
b. Check File Explorer to verify that you can connect to the network.
c. Save the workbook file to your hard drive.
You might also like to view...
Answer the following statements true (T) or false (F)
1) The statement always displays x is 10, regardless of the value of x when the statement is encountered. ``` if (x = 10) cout << "x is 10" << endl; ``` 2) The value of the expression is true. ``` 15< 20 || 20 >= 20 ``` 3) C++ has a data type named bool whose only values are true and false. 4) Evaluating only as much of an expression as is necessary is called short-circuit evaluation. 5) The code fragment on the left always gives p the same value as the code fragment on the right. ``` if (x > 15) if (x > 15) p = p * x; p = p * x; if (x > 30) else if (x > 30) p = 2 * p * x; p = 2 * p * x; ```
What is the process of requesting a certificate, having it approved, and downloading called?
A. certifying B. registration C. enrollment D. validating