Which of the following virtualization products uses a type 2 hypervisor?
A. Citrix XenServer
B. VMware vSphere
C. Microsoft Hyper-V
D. VMware Workstation
Answer: D
Computer Science & Information Technology
You might also like to view...
Which is another name for insertion point?
A) Cursor B) Mouse C) Marker D) Pointer
Computer Science & Information Technology
Consider the following structure definition. Which Dim statement would correctly declare an array of this structure for elements having subscripts from 0 through 30?
``` Structure carType Dim yr As Integer Dim make As String Dim model As String End Structure ``` (A) You cannot have an array of structures. (B) Dim carType(30) (C) Dim car(30) As carType (D) Dim carType(30) As car
Computer Science & Information Technology