The I Love You virus caused harm because ________

a. It had a negative payload.
b. It erased data on computers.
c. It generated large numbers of emails that bogged down many networks.
d. None of the above.


Answer C.

Computer Science & Information Technology

You might also like to view...

Which of the following is NOT a suggested way to protect yourself when shopping online?

A) You should look for third-party verification. B) You should save a copy of the order. C) You should use a debit card. D) You should make sure the company has a phone number and street address.

Computer Science & Information Technology

Consider the following definition of a recursive method.      public static int foo(int n)          //Line 1      {                                        //Line 2         if (n == 0)                      //Line 3                return 0;                      //Line 4         else                                  //Line 5                return n + foo(n - 1);          //Line 6      }Which of the statements represent the base case?

A. Statements in Lines 3 and 4 B. Statements in Lines 5 and 6 C. Statements in Lines 3, 4, and 5 D. None of these

Computer Science & Information Technology

____ networks have computers that are servers and computers that act as clients to those servers.

A. EMI B. Peer-to-peer C. Peer-to-node D. Client/server

Computer Science & Information Technology

In rare cases you can chart text entries.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology