Which standard enables laptop computers to be expanded via an expansion slot?

A) PCIe
B) AGP
C) ExpressCard
D) HyperTransport

C

Computer Science & Information Technology

You might also like to view...

Which of the following statements correctly prints “Passed” if the student’s grade is greater than or equal to 60 and “Failed” if the stu-dent’s grade is less than 60? [The quotes, of course, should not print.]

a) printf("%s\n", grade >= 60 : "Passed" : "Failed"); b) grade >= 60 : puts("Passed ") ? puts("Failed "); c) printf("%s\n", grade >= 60 ? "Passed" : "Failed"); d) grade >= 60 ? puts("Passed ") ? puts("Failed ");

Computer Science & Information Technology

What menu is used to align controls on a form?

(A) View (B) Window (C) Build (D) Format

Computer Science & Information Technology