A users system is infected with a worm and has propagated to 30 company systems so far. Which of the following is the FIRST step the technician should take before attempting to remove the worm from the customers system?
A. Update antivirus definitions on the users system.
B. Log the user off the system.
C. Disconnect the network cable from the users system.
D. Boot the system in Safe Mode.
Answer: C. Disconnect the network cable from the users system.
You might also like to view...
What is wrong with the following recursive function? It should print out the array backwards.
void print(int array[], int start, int size) { if(start == size) return; else { print(array, start-1,size); cout << array[start] << endl; } } a. infinite recursion b. the stopping condition is wrong c. the recursive call is wrong d. nothing
Database design often involves decisions about the storage of attributes. For example a Social Security Number can be stored as a one attribute or split into three attributes (one for each of the three hyphen-deliniated groups of numbers in a Social Security Number—XXX-XX-XXXX). However, Social Security Number is usually stored in one attribute. The decision is usually based on how the database will be used. This exercise asks you to think about specific situations where dividing the SSN is useful.
What will be an ideal response?