You should use a(n) ________ program to protect your computer from Trojan horses and worms.
a. adware
b. rootkit
c. antivirus
d. spam
c. antivirus
You might also like to view...
You can combine linear and hierarchical structures in a Web site.
Answer the following statement true (T) or false (F)
What is list after the following code is executed?
```
ArrayList
?Suppose you are the president of the newly formed Business Students Club at your university. As the first step in strategic planning, you will create the _______.
Fill in the blank(s) with the appropriate word(s).
Fill in the code to complete the following method for computing factorial.
``` /** Return the factorial for a specified index */ public static long factorial(int n) { if (n == 0) // Base case return 1; else return _____________; // Recursive call } ``` a. n * (n - 1) b. n c. n * factorial(n - 1) d. factorial(n - 1) * n