Which of the following is not needed to create a secure system?

A. People
B. Processes
C. Technology
D. All the above are needed to create a secure system


Answer: D
Explanation: People, processes, and technology are all needed to create a secure system. None of these elements alone can adequately secure a system.

Computer Science & Information Technology

You might also like to view...

Which is a common storage device that uses lasers to produce light to store data on devices such as DVDs and Blu-ray disks?

A. tape drive B. flash drive C. magnetic drive D. optical drive

Computer Science & Information Technology

________ labels are the most commonly used labels in the United States

A) Microsoft B) Office Depot C) 3M D) Avery

Computer Science & Information Technology

In the following expression, the exclamation point is referred to as a(n) ________

=IIf(IsError([Lastname_First Subreport].[Report]![Total Amount]) A) object operator B) bang operator C) object linker D) parameter

Computer Science & Information Technology

What does the following program do?

``` #include using namespace std; bool mystery( unsigned ); int main() { unsigned x; cout << "Enter an integer: "; cin >> x; cout << boolalpha << "The result is " << mystery( x ) << endl; } // end main // What does this function do? bool mystery( unsigned bits ) { const int SHIFT = 8 * sizeof( unsigned ) - 1; const unsigned MASK = 1 << SHIFT; unsigned total = 0; for ( int i = 0; i < SHIFT + 1; i++, bits <<= 1 ) if ( ( bits & MASK ) == MASK ) ++total; return !( total % 2 ); } // end function mystery ```

Computer Science & Information Technology