Ans: D. 240-pin DIMM
What size DIMM is used by desktop DDR2 SDRAMs?
A. 168-pin DIMM
B. 184-pin DIMM
C. 200-pin DIMM
D. 240-pin DIMM
Computer Science & Information Technology
You might also like to view...
Excel uses ________ cell referencing by default in formulas and functions
A) absolute B) relative C) named range D) mixed
Computer Science & Information Technology
Which loop computes the sum of 1/2 + 2/3 + 3/4 + 4/5 + … + 99/100?
(A) For n As Integer = 1 To 99 s += n / (1 + n) Next (B) For q As Integer = 100 To 1 s += (q + 1) /q Next (C) For d As Integer = 2 To 99 s = 1 / d + d / (d + 1) Next (D) For x As Integer = 1 To 100 s += 1 / (x + 1) Next
Computer Science & Information Technology