A virtual machine ________saves a point-in-time state of the virtual machine

a. Frame
b. Image
c. Checkpoint
d. Copy

C. Checkpoints save not only the state of the hard disk files, but also the state of the running machine and hardware configuration by creating a copy of the machine's memory at the time the checkpoint is taken.

Computer Science & Information Technology

You might also like to view...

Who is responsible for the creation of the project management plan?

A. CEO B. CIO C. Project manager D. Development team

Computer Science & Information Technology

What will be the output of the following program when the button is clicked?

Private Sub btnDisplay_Click(...) Handles btnDisplay.Click Dim x, y, z As Double x = 3 y = 3 If x > y Then z = x + y Else z = y - x End If txtBox.Text = CStr(z) End Sub``` ``` (A) 6 (B) 3 (C) 0 (D) No output

Computer Science & Information Technology