Electronic junk mail is known as ________

Fill in the blank(s) with correct word

spam

Computer Science & Information Technology

You might also like to view...

Match the following terms with their description

I. Cybercrime II. Phishing III. Pharming IV. Hacking V. Hacktivism A. Gaining unauthorized access to a computer system or network B. Generally used to make a political statement C. Criminal activity on the Internet D. Messages designed to trick you E. Redirects you to a phony website

Computer Science & Information Technology

What would be the value of bonus after the following statements are executed?

``` int bonus, sales = 1250; if (sales > 1000) bonus = 100; if (sales > 750) bonus = 50; if (sales > 500) bonus = 25; else bonus = 0; ``` a. 100 b. 500 c. 25 d. 0

Computer Science & Information Technology