__________ is an extra layer of programming to manage interaction between multiple OS's and hardware without the need for a host OS.

a. supervisor
b. virtual machine manager
c. hypervisor
d. emulator

Answer: c. hypervisor

Computer Science & Information Technology

You might also like to view...

You can use a(n) ____ to visually separate related controls from other controls on the form.

A. radio button B. check box C. group box D. icon area

Computer Science & Information Technology

Which of the following initializer lists correctly initializes the indexed variables of an array named myDoubles?

a. double myDoubles[double] = {0.0, 1.0, 1.5, 2.0, 2.5}; b. double myDoubles[5] = new double(0.0, 1.0, 1.5, 2.0, 2.5); c. double[] myDoubles = {0.0, 1.0, 1.5, 2.0, 2.5}; d. array myDoubles[double] = {0.0, 1.0, 1.5, 2.0, 2.5};

Computer Science & Information Technology