Which of the following is the core component of Hyper-V and is responsible for creating and managing isolated execution environments called partitions?

A. virtual machines
B. integration services
C. synthetic devices
D. hypervisor

Answer: D

Computer Science & Information Technology

You might also like to view...

What is the value of the following expression? true || true && false

a. true b. false

Computer Science & Information Technology

What is the output from the following?

``` >>> first = "Abe" >>> last = "Lincoln" >>> swap = first >>> first = last >>> last = swap >>> print first + " " + last ```

Computer Science & Information Technology