Which of the following is not a reason that you should have the ability to troubleshoot common problems?

A) If you can diagnose all or part of the problem yourself, you can save time and money when you approach someone to actually fix it.
B) Understanding how your computer works will help you solve complex problems.
C) Relying on an expert to diagnose and repair your equipment can be costly and not always effective.
D) If nothing else, you can ask intelligent questions about the problem, provide information on prior attempts to fix the problem, and potentially save time and money in the repair process.

B

Computer Science & Information Technology

You might also like to view...

Which of these items is not represented by a number?

A) a date B) a name C) an amount of money D) a time

Computer Science & Information Technology

Find the errors in the following code segments and explain how to correct them.

``` switch (n) { case 1: cout << "The number is 1" << endl; case 2: cout << "The number is 2" << endl; break; default: cout << "The number is not 1 or 2" << endl; } ```

Computer Science & Information Technology