____ is a general term used to describe worms, viruses, spyware, or other types of software with a malicious intent.

A. Wireless packet sniffer
B. VoWLAN
C. VoIP
D. Malware

Answer: D

Computer Science & Information Technology

You might also like to view...

A menu system may consist of each of the following, EXCEPT:

A) check box menu item B) combo box menu item C) radio button menu item D) menu item

Computer Science & Information Technology

Consider the following program segment.  ifstream inFile; //Line 1int x, y; //Line 2... //Line 3  inFile >> x >> y; //Line 4  Which of the following statements at Line 3 can be used to open the file progdata.dat and input data from this file into x and y at Line 4?

A. inFile.open("progdata.dat"); B. inFile(open,"progdata.dat"); C. open.inFile("progdata.dat"); D. open(inFile,"progdata.dat");

Computer Science & Information Technology