Sometimes an expansion board may have an extra PCIE power connector. This connector comes in what two different pin configurations?
A. 4-pin
B. 6-pin
C. 8-pin
D. 8+1-pin
Ans: B & C.
6-pin and 8-pin
Computer Science & Information Technology
You might also like to view...
Increasing which of the following qualities produces a smoother movement in a video?
A) pixels B) saturation C) resolution D) frame rate
Computer Science & Information Technology
Suppose x = 1, y = -1, and z = 1. What is the output of the following statement? (Please indent the statement correctly first.)
``` if (x > 0) if (y > 0) System.out.println("x > 0 and y > 0"); else if (z > 0) System.out.println("x < 0 and z > 0"); ``` a. x > 0 and y > 0; b. x < 0 and z > 0; c. x < 0 and z < 0; d. no output.
Computer Science & Information Technology