Which type of virus was the famous Michelangelo virus?

A. A worm
B. A time bomb
C. A script virus
D. An e-mail virus


Answer: B

Computer Science & Information Technology

You might also like to view...

With HTML, browsers usually accept documents that violate HTML ____________________ as long as the violation is not too severe.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Given the following code:

``` class C1 {} class C2 extends C1 { } class C3 extends C2 { } class C4 extends C1 {} C1 c1 = new C1(); C2 c2 = new C2(); C3 c3 = new C3(); C4 c4 = new C4(); ``` Which of the following expressions evaluates to false? a. c1 instanceof C1 b. c2 instanceof C1 c. c3 instanceof C1 d. c4 instanceof C2

Computer Science & Information Technology

In ________ generation languages, problems are presented as a series of facts or constraints instead of as a specific algorithm

A) first B) second C) fifth D) sixth

Computer Science & Information Technology

____________________ addressing means typing all of the IP information into each of your hosts.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology