Which choice best describes a zombie?

A. Malware that logs keystrokes
B. A type of root kit
C. A tool used to achieve privilege escalation
D. A member of a botnet

Answer: D. A member of a botnet

Computer Science & Information Technology

You might also like to view...

Which of the following encoding methods is used to encode email messages?

a. XOR b. Base64 c. Uuencode d. Unicode

Computer Science & Information Technology

What is the output of the following code, given the function definition below?

What is the output of the following code, given the function definition below? int a = 7, b = 12; tester (a, b); cout << a << “ “ << b; void tester (int m, int &n) // function definition { n = n - 2 * m; m = 2 * m; } a) 7 -2 b) 7 12 c) 14 -2 d) 14 12

Computer Science & Information Technology