Which of the following should be done to maintain and harden a hard disk? (Select the two best answers.)
A. Defragment the drive.
B. Consider a whole disk encryption.
C. Install third-party applications.
D. Sanitize the drive.
A and B. Defragmenting the hard drive is a good way to maintain the drive. Using whole disk encryption can harden the hard disk. It is unknown whether third-party applications can help to maintain or harden a hard disk; chances are they will do neither. Sanitizing the drive is the act of removing all the data.
You might also like to view...
_______________ limits access to a network based on a NIC's MAC address.
Fill in the blank(s) with the appropriate word(s).
What are the advantages and disadvantages of developing software in which the quality is "good enough?" That is, what happens when we emphasize development speed over product quality?
What will be an ideal response?
By default, Windows file sharing utilizes what protocol?
A. Server Message Block (SMB) B. Network File System (NFS) C. File Transfer Protocol (FTP) D. Microsoft File Sharing (MFS)
What will the following program print on screen?int age = 40;if (age = 40) printf("Happy Birthday!");else printf("Sorry");
A. Happy Birthday! B. Sorry C. Runtime error. D. Nothing; the program will not compile.