A Primary Fault Tolerant VM is performing poorly despite its ESXi host having adequate resources and CPUs are idle. Other hosts in the cluster are much more heavily utilized. What is the cause?

A. The Secondary VM is assigned to a different portgroup than the Primary.
B. The Secondary VM is running more applications than the Primary.
C. The Secondary VM is running on an ESXi host that is overcommitted.
D. The vMotion network has not been configured for Jumbo Frames.


Answer: C. The Secondary VM is running on an ESXi host that is overcommitted.

Computer Science & Information Technology

You might also like to view...

What practice is noted by the BSIMM as involving the creation of controls for compliance regimens such as PCI DSS and HIPAA?

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

What router command verifies whether EIGRP is running on a router?

a. show run b. show ip int brief c. show history d. show ip protocol

Computer Science & Information Technology

"Digital media" is a term used to refer to all of the following, EXCEPT _____.

A. photos B. e-mail C. videos D. music

Computer Science & Information Technology

What is the output of the following program?

``` import java.util.Date; public class Test { public static void main(String[] args) { Date date = new Date(1234567); m1(date); System.out.print(date.getTime() + " "); m2(date); System.out.println(date.getTime()); } public static void m1(Date date) { date = new Date(7654321); } public static void m2(Date date) { date.setTime(7654321); } } ``` a. 1234567 1234567 b. 1234567 7654321 c. 7654321 1234567 d. 7654321 7654321

Computer Science & Information Technology