Which term refers to a program that monitors the types of Web sites you frequent and uses that information to generate targeted advertisements, usually pop-up windows?
A. Spyware
B. Adware
C. Macro
D. Trojan Horse
Answer: B
You might also like to view...
What type of assessment method used within the CMM assists with the selection of a capable supplier, and tends to resemble an audit?
Fill in the blank(s) with the appropriate word(s).
Client/server networks are generally less secure than P2P networks
Indicate whether the statement is true or false
Typical contents of a run manual include all of the following except
A. run schedule B. logic flowchart C. file requirements D. explanation of error messages
What is the value of GRID(3, 1) after the instructions corresponding to the following pseudocode are executed?
``` R = 1 DOWHILE R < 5 C = 2 DOWHILE C < 5 GRID(R, C) = R + C C = C + 1 ENDDO R = R + 2 ENDDO ``` a) 4 b) 5 c) 6 d) undefined