Which of the following can cause a blue screen error?

A. Bad drivers
B. A DVD that contains an incorrect format
C. An incorrect router configuration
D. A rogue DHCP server

Ans: A. Bad drivers

Computer Science & Information Technology

You might also like to view...

Which command would you use to move to cells that have special characteristics, are blank, or contain constants?

A) Replace B) Find and Select C) Go To Special D) Tab

Computer Science & Information Technology

What is wrong with this code?

```WriteGreeting(char greetings[ ][10]); int main() { char greetings[3][10]= {“hello”, “howdy”, “hi”} ; WriteGreeting(greetings); return 0; } WriteGreeting(char greetings[ ][ ] ) { for(int I = 0; I < 3; ++I) cout<

Computer Science & Information Technology