Which term refers to a function of any program that sends information about your system or your actions over the Internet?

A. Spyware
B. Adware
C. Macro
D. Trojan Horse


Answer: A

Computer Science & Information Technology

You might also like to view...

Define the terms class, object, method and method call.

What will be an ideal response?

Computer Science & Information Technology

When linking to an email address, the word sendmail: displays before the address

Indicate whether the statement is true or false

Computer Science & Information Technology

The style applies a background color to the ____ of a Web page.

A. entire body B. entire header C. outside border D. entire footer

Computer Science & Information Technology

In the following code that uses recursion to find the greatest common divisor of a number, what is the base case?

``` public static int gcd(int x, int y) { if (x % y == 0) return y; else return gcd(y, x % y); } ``` a. gcd(int x, int y) b. if (x % y == 0) return y; c. else return gcd(y, x % y); d. Cannot tell from this code

Computer Science & Information Technology