A technician attempts to install Windows XP on a new Windows Vista PC but gets an error stating that setup did not detect any valid hard disks. Which of the following is MOST likely the cause of this error?
A. The hard drive is too large for Windows XP to recognize.
B. The hard drive is defective and needs to be replaced.
C. The user needs to call Microsoft and verify that the Windows copy is registered with the DRM.
D. Windows XP does not natively support SATA controllers.
Answer: D. Windows XP does not natively support SATA controllers.
You might also like to view...
Leaving the ________ on enables you to see the audience, discourages dozing, and increases the interactivity
Fill in the blank(s) with correct word
The ____ command creates a layer group and places the selected layers in it.
a. Create Cluster b. New Group from Layers c. Aggregate Layers d. New Layer Group
An algorithm that finds the solution to a given problem by reducing the problem to smaller versions of itself is called a(n) ____.
A. iterative algorithm B. recursive algorithm C. regressive algorithm D. successive algorithm
Which of the following does not perform the following task: display correct if answer is equal to 7 and incorrect if answer is not equal to 7?
a. if ( answer == 7 ) cout << "correct"; else cout << "incorrect"; b. cout << answer == 7 ? "correct" : "incorrect"; c. cout << ( answer == 7 ? "correct" : "incorrect" ); d. answer == 7 ? cout << "correct" : cout << "incorrect";