A virtual machine that's shut down or suspended is no more than a(n) __________ or folder sitting on a hard drive.

A. image
B. file
C. process
D. snapshot


Answer: B

Computer Science & Information Technology

You might also like to view...

Answer the following questions true (T) or false (F)

1. Dangling pointers present no problem in C++ 2. Dynamic variables or dynamically allocated variables in C++ are created and destroyed according to the program’s needs.

Computer Science & Information Technology

From the output you saved, describe how the BGP routers learn that a link is down. (Hint: Look at the BGP State field)

What will be an ideal response?

Computer Science & Information Technology

What is sum after the following loop terminates?

``` int sum = 0; int item = 0; do { item++; sum += item; if (sum > 4) break; } while (item < 5); ``` a. 5 V c. 7 d. 8 e. 9

Computer Science & Information Technology

Which of the following determines the amount of space a field uses in the database?

What will be an ideal response?

Computer Science & Information Technology