Which term refers to a technology that is great for doing risky (or even not-so-risky) maintenance with a safety net?

A. Bare metal hypervisor
B. Snapshot
C. Cloud computing
D. Cluster


Answer: B

Computer Science & Information Technology

You might also like to view...

____ targets the general user community.

A. Awareness B. Training C. Motivation D. Morale

Computer Science & Information Technology

An attribute value always must be enclosed within either single or double _____.

A. brackets B. quotes C. braces D. parentheses

Computer Science & Information Technology

What is the printout of the following code?

``` int values[] = {1, 2, 3, 4, 4, 5, 1, 1}; rotate(values, values + 5, values + 8); ostream_iterator output(cout, " "); cout << "values: "; copy(values, values + 8, output); ``` a. values: 1 1 2 3 4 4 5 1 b. values: 1 1 1 2 3 4 4 5 c. values: 4 5 1 1 1 2 3 4 d. values: 5 1 1 1 2 3 4 4

Computer Science & Information Technology

Which of the following statements are true?

a. A subclass is a subset of a superclass. b. A subclass is usually extended to contain more functions and more detailed information than its superclass. c. "class A extends B" means A is a subclass of B. d. "class A extends B" means B is a subclass of A.

Computer Science & Information Technology