CMOS holds the computer's ____

A) Antivirus software
B) Flash BIOS
C) startup commands
D) current BIOS configuration


D

Computer Science & Information Technology

You might also like to view...

Show the printout of the following code:

``` #include using namespace std; void xFunction(int i) { int num = 1; for (int j = 1; j <= i; j++) { cout << num << " "; num *= 3; } cout << endl; } int main() { int i = 1; while (i <= 5) { xFunction(i); i++; } return 0; } } ```

Computer Science & Information Technology

Which tunneling method is a good choice if you must tunnel through a NAT using UDP, but a poor choice based on performance issues?

A. 6to4 B. Teredo C. ISATAP D. GRE

Computer Science & Information Technology

Which of the following choices is not one of the four types of packets used by EAP?

A. Request B. Response C. Success D. Error

Computer Science & Information Technology

A(n) ___________ is a special category of laptop, designed to be connected to the Internet for most routine computing activities.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology