Which malware attempts to embed itself deeply into a system in order to hide itself and other items, such as files, folders, or even executable processes?

A. Rootkit
B. Trojan horse
C. Worm
D. Virus


Answer: A. Rootkit

Computer Science & Information Technology

You might also like to view...

What is the difference between the iterators defined here.

What will be an ideal response? ``` vector vec; //put 10 values into vec const vector::iterator p = vec.begin(); vector::const_iterator q = vec.begin(); ```

Computer Science & Information Technology

When using the Overlay/High Pass technique, the more you increase the ____ value, the greater the area of the image that Photoshop will define as an edge area.

A. Contrast B. Opacity C. Radius D. Linear

Computer Science & Information Technology

Complete the program below by writing the function largeDiv that finds the largest divisor of a number other than itself. (Hint: try half of the number first. Then as long as you haven't found a divisor, keep subtracting 1 from your trial value. You can be sure that 1 will divide the number if you don't find a larger divisor.)

#include 
using namespace std;

// Write your function prototype for largeDiv here.





int main()
{
	int number;
	int divisor;

	cout << "Enter an integer greater than 1 => ";
	cin >> number;

	divisor = largeDiv( number );

	if ( divisor == 1 )
	   cout << number << " is a prime number." << endl;
	else
	   cout << divisor << " is the largest divisor of " << number << endl;

	return 0;
}

// Write your function definition for largeDiv here.

Computer Science & Information Technology

A(n) ____________________  is a fundamental building block of a relational database because this object stores all of the data.

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

Computer Science & Information Technology