A project manager needs more hard drive space so the technician installs a hard drive that was removed from a computer that is used for spare parts. BIOS recognizes the drive, but the Disk Management status window shows the drive as Failed. What should the technician do first?

A) Run BitLocker.
B) Right-click on the drive and select Reactivate Disk.
C) Use the Check Now tool.
D) Run an antivirus application.


B

Computer Science & Information Technology

You might also like to view...

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

1. An array must be initialized when it is declared. 2. Subscript range errors are syntax errors. 3. Loop control variables may be used as array subscripts. 4. Single array elements may not be used as function arguments. 5. An array name with no subscript is a pointer.

Computer Science & Information Technology

Analyze the following code:

``` int i = 3434; double d = 3434; System.out.printf("%5.1f %5.1f", i, d); ``` a. The code compiles and runs fine to display 3434.0 3434.0. b. The code compiles and runs fine to display 3434 3434.0. c. i is an integer, but the format specifier %5.1f specifies a format for double value. The code has an error. Key:c i is an integer, but the format specifier %5.1f specifies a format for double value. Type does not match. So, the correct answer is C.

Computer Science & Information Technology

How can you differentiate the slide master from the layout masters when in Slide Master view?

A) It has a black, bold outline and the others do not have an outline. B) A unique tab displays when it is selected. C) It retains an orange background to show it is different than the rest. D) It is larger than the other masters.

Computer Science & Information Technology

The federated Web SSO with forest trust design is most often used in business-to-employee relationships.

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

Computer Science & Information Technology