This term describes a single computer under the control of a (usually) remote operator.

A. DDOS
B. phishing
C. smurf attack
D. zombie


Answer: D

Computer Science & Information Technology

You might also like to view...

The merge sort algorithm:

a. Can be used only on vectors of even length. b. Works by reducing vectors down to the base case of a two-element vector. c. Works by merging two sorted vectors into one larger sorted vector. d. Cannot be implemented recursively.

Computer Science & Information Technology

?If a linked worksheet does not refresh, you should:

A. ?right-click the Arrange button in the Format tab. B. ?left-click the Refresh Data button in the Design tab. C. ?left-click to select the worksheet and press the F5 key. D. ?right-click the worksheet and click Update Link.

Computer Science & Information Technology

Find the errors in the following class and explain how to correct them:

``` class Example { public: Example( int y = 10 ) : data( y ) { // empty body } // end Example constructor int getIncrementedData() const { return data++; } // end function getIncrementedData static int getCount() { cout << "Data is " << data << endl; return count; } // end function getCount private: int data; static int count; }; // end class Example ```

Computer Science & Information Technology

A(n) ________ chart includes only one data series

Fill in the blank(s) with correct word

Computer Science & Information Technology