CCNA vSphere Performance and Scaling Questions

36 of 111 questions · Page 2/2 · vSphere Performance and Scaling · Answers revealed

76
Multi-Selectmedium

Which TWO conditions are required for a successful vMotion of a powered-on virtual machine? (Select TWO.)

Select 2 answers
A.The VM must have its virtual disks on shared storage accessible to both hosts
B.The source and destination hosts must have identical physical network adapters
C.Both hosts must be managed by the same vCenter Server
D.The VM must be connected to the same VLAN on both hosts
E.The CPUs of the source and destination hosts must be compatible
AnswersA, E

Shared storage is required so that both hosts can access the disks during migration.

Why this answer

Shared storage for the VM's disks and compatible CPUs are required. Identical network is not necessary; the VM can be reconnected. Same vCenter is not required for cross vCenter vMotion.

77
MCQhard

An administrator wants to ensure that a critical database VM has consistent low-latency access to its virtual disks. The VM currently resides on a datastore backed by a hybrid array. Which configuration change best meets this requirement?

A.Create a VM storage policy that requires flash-based storage and apply it to the VM.
B.Configure the VM to use multiple paths with Round Robin policy.
C.Assign a separate VMDK for each critical VM on a dedicated datastore.
D.Enable Storage I/O Control (SIOC) on the datastore.
AnswerA

A storage policy with rule set for flash ensures placement on low-latency storage.

Why this answer

Option A is correct because creating a VM storage policy that requires flash-based storage and applying it to the VM ensures that the virtual disks are placed on an all-flash datastore, which provides consistent low-latency access. This leverages vSphere Storage Policy-Based Management (SPBM) to enforce placement on flash media, eliminating the variable latency introduced by the HDD tier in a hybrid array.

Exam trap

The trap here is that candidates often confuse I/O management features (SIOC, multipathing) with storage media performance, thinking they can compensate for the inherent latency of HDDs in a hybrid array, but only a flash-based storage policy directly addresses the requirement for consistent low-latency access.

How to eliminate wrong answers

Option B is wrong because configuring multiple paths with a Round Robin policy improves I/O load balancing across paths but does not guarantee low latency; it does not change the underlying storage media from hybrid to flash. Option C is wrong because assigning a separate VMDK on a dedicated datastore isolates the VM but does not address the latency issue if the datastore is still backed by a hybrid array. Option D is wrong because enabling Storage I/O Control (SIOC) manages congestion by throttling I/O during contention but does not reduce baseline latency; it cannot compensate for the inherent latency of HDDs in a hybrid array.

78
Multi-Selectmedium

Which three actions can reduce CPU ready time for a virtual machine in a vSphere cluster? (Choose three.)

Select 3 answers
A.Enable CPU hot-add on the VM
B.Set the VM's CPU affinity manually
C.Place the VM on a host with lower CPU utilization
D.Reduce the number of vCPUs allocated to the VM
E.Increase the host's physical CPU count by adding a new host to the cluster
AnswersC, D, E

Lower host utilization means more CPU resources available for the VM, reducing ready time.

Why this answer

The correct options are B, D, and E. Reducing vCPUs reduces contention, adding hosts increases resources, and placing on less loaded host reduces ready time. Hot-add does not reduce ready time; manual CPU affinity can worsen.

79
Matchingmedium

Match each vSphere command-line tool to its purpose.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Command-line interface for ESXi management

Command for vCenter and host operations

Tool for managing VMFS and virtual disks

vSphere Sysinfo Shell for debugging

Performance monitoring tool for ESXi resources

Why these pairings

Common CLI tools used in vSphere administration.

80
MCQhard

A database VM with 32 vCPUs and 256 GB memory is deployed on a host with two NUMA nodes, each with 8 cores (16 threads with HT). The application performs badly. Analysis shows high remote memory access. What is the MOST LIKELY reason?

A.Hyperthreading is enabled causing CPU contention.
B.The vNUMA nodes are not aligned with the physical NUMA nodes.
C.The host's NUMA nodes are not balanced in memory capacity.
D.The VM has too much memory allocated.
AnswerB

Misalignment causes the guest to access memory from remote NUMA nodes, increasing latency.

Why this answer

With 32 vCPUs, the VM exceeds the default vNUMA node size of 8 cores, so vSphere will expose multiple vNUMA nodes. However, if vNUMA is not correctly configured or if the VM's memory size forces it to span physical NUMA nodes, the guest OS may not optimize memory locality. The most common cause is that the VM's vCPUs and memory are not aligned with the physical NUMA topology, leading to remote memory access.

Disabling hyperthreading would not help alignment, nor would adding more memory.

81
Multi-Selecthard

Which THREE techniques are recommended to improve virtual machine network performance in a vSphere environment? (Select three.)

Select 3 answers
A.Enable Jumbo Frames on the virtual switch.
B.Use the VMXNET3 virtual network adapter.
C.Use a dedicated virtual switch for each VM.
D.Use the e1000e network adapter type.
E.Enable SR-IOV on supported NICs.
AnswersA, B, E

Jumbo Frames reduce per-packet CPU overhead, improving throughput.

Why this answer

Correct: B (SR-IOV), D (Jumbo Frames), E (VMXNET3). SR-IOV reduces virtualization overhead. Jumbo Frames reduce CPU overhead for large packets.

VMXNET3 is a paravirtualized adapter with excellent performance. Option A (e1000e) is emulated and slower. Option C (dedicated vSwitch per VM) adds complexity without benefit.

82
Multi-Selecthard

Which THREE factors should be considered when designing a vSphere environment to minimize vCPU overcommitment and improve performance for CPU-intensive workloads?

Select 3 answers
A.Align VM memory with NUMA nodes to reduce remote memory access.
B.Select hosts with a high physical core count per socket.
C.Use VMs with a high number of vCPUs (e.g., 2:1 ratio to pCPUs).
D.Enable Hyper-Threading on all hosts.
E.Use CPU scheduling modes like 'Core Level' to increase performance.
AnswersA, B, E

NUMA-aware placement improves memory access performance.

Why this answer

Option B is correct because more physical cores reduce contention. Option C is correct because vSphere can use core-level scheduling to improve performance. Option D is correct because NUMA awareness ensures VMs are scheduled on local memory.

Option A is incorrect because large vCPUs can increase overhead. Option E is incorrect because simultaneous multithreading (hyperthreading) increases logical CPUs but may not reduce overcommitment for heavily CPU-bound workloads.

83
MCQhard

A company has a cluster with DRS set to Fully Automated. A VM named VM1 has a reservation of 4 GHz and a limit of 8 GHz on a host with 10 GHz available. The VM is running a batch job that requires as much CPU as possible. The administrator notices that the VM's CPU usage never exceeds 4 GHz. What is the most likely reason?

A.The CPU reservation is preventing the VM from using more than the reserved amount.
B.The CPU shares are too low, causing the VM to be starved.
C.The VM has a CPU limit set to 4 GHz via a resource pool or VM override.
D.DRS is not migrating the VM to a host with more resources.
AnswerC

Correct: A limit caps the maximum CPU usage; the specified limit of 8 GHz may be overridden by a lower limit.

Why this answer

Option C is correct because a CPU limit explicitly caps the maximum CPU usage a VM can consume, regardless of available resources. In this scenario, the VM has a reservation of 4 GHz and a limit of 8 GHz on the host, but the administrator observes usage never exceeding 4 GHz, indicating a more restrictive limit is applied via a resource pool or VM override. This overrides the host-level limit, effectively capping the VM at 4 GHz, which matches the observed behavior.

Exam trap

The trap here is that candidates often confuse CPU reservation with CPU limit, assuming a reservation restricts maximum usage, when in fact a reservation only guarantees a minimum and a separate limit must be explicitly set to cap usage.

How to eliminate wrong answers

Option A is wrong because a CPU reservation guarantees a minimum amount of CPU resources to the VM, not a maximum; the VM can burst above the reservation if resources are available, so a reservation of 4 GHz does not prevent usage beyond 4 GHz. Option B is wrong because CPU shares determine relative priority during contention, but since the host has 10 GHz available and the VM is not contending for resources, low shares would not starve the VM; the VM would still be able to use more than 4 GHz if no limit were in place. Option D is wrong because DRS migration is irrelevant when the VM is already on a host with sufficient resources (10 GHz) and the issue is a hard cap on CPU usage, not a lack of available resources on the current host.

84
MCQeasy

A small financial services company runs a critical trading application on a single vSphere host with two NUMA nodes (each with 8 cores). The VM is configured with 12 vCPUs and 64 GB memory. The application is not yet live, but load testing shows that CPU performance is satisfactory, but memory bandwidth is lower than expected. The application is known to benefit from fast memory access within a single NUMA domain. The administrator notices that the VM's memory is spread across both NUMA nodes. The administrator wants to force the VM to use only one NUMA node to maximize performance. However, the VM requires 12 vCPUs, which exceeds the 8 physical cores per node. What is the best course of action to improve memory bandwidth for this VM?

A.Enable Hyper-Threading and reassign vCPUs to 12, and the VM will automatically run within one NUMA node.
B.Keep the vCPU count at 12 but configure a NUMA Affinity to prefer the first NUMA node, and accept some cross-node memory access.
C.Keep the vCPU count at 12 but set CPU affinity to the first NUMA node only, leaving the second node unused.
D.Reduce the number of vCPUs to 8 to fit within one NUMA node, and keep the same memory size.
AnswerB

NUMA affinity prefers one node for memory allocation, keeping most memory local while allowing vCPUs to use both nodes as needed, balancing performance.

Why this answer

Option C is correct: Using NUMA affinity to prefer one node keeps most memory local, but vCPU count exceeds core count, so some vCPUs will still run on the second node. However, memory can be allocated from the preferred node as much as possible, reducing cross-node latency. Option A is wrong because reducing vCPUs may affect application performance.

Option B is wrong because CPU affinity to only one node would starve vCPUs as there are only 8 cores, causing high ready time. Option D is wrong; Hyper-Threading does not change physical core count; 12 vCPUs still exceed 8 cores per node, and HT does not enable single-node placement.

85
MCQmedium

Based on the exhibit, which statement about the virtual machine's memory state is TRUE?

A.The VM is using the memory balloon driver to reclaim memory.
B.The VM is using transparent page sharing to reduce memory usage.
C.The VM has no memory pressure and is performing optimally.
D.The VM is actively swapping memory because of memory pressure.
AnswerD

SWCUR and swap rates confirm swapping is occurring.

Why this answer

SWCUR (current swapped memory) is 512 MB, and SWR/s and SWW/s show non-zero swap rates, indicating that the VM is actively swapping memory to disk. MCTLSZ is 0, meaning no ballooning is occurring. The VM's memory size is 4096 MB.

Swapping is a sign of memory pressure.

86
MCQhard

An administrator configures a resource pool with a reservation of 10 GHz and a limit of 20 GHz. The pool contains two VMs: VM1 has a reservation of 6 GHz and no limit, VM2 has no reservation and a limit of 8 GHz. The host has only 12 GHz available. During peak usage, both VMs demand more than their shares. Which statement is true?

A.VM1 gets at least 6 GHz, VM2 gets at most 8 GHz, but because the pool limit is 20 GHz and host only 12, VM2's limit is effectively 6 GHz after VM1's reservation
B.VM1 gets at least 6 GHz, VM2 gets at most 8 GHz, and the remaining 4 GHz is divided by share
C.VM1 gets exactly 6 GHz, VM2 gets exactly 8 GHz, and the pool's reservation is ignored
D.VM1 gets at least 6 GHz, VM2 gets at least 2 GHz due to pool reservation, and both use remaining as share
AnswerA

VM1's reservation takes 6 GHz, leaving 6 GHz for VM2, which is within VM2's limit of 8 GHz, so VM2 gets 6 GHz.

Why this answer

Option B is correct. The resource pool has a limit of 20 GHz, but host only has 12 GHz. VM1 has 6 GHz reservation, so it gets at least that.

VM2 has a limit of 8 GHz, but after VM1's reservation only 6 GHz remains on the host, which is within VM2's 8 GHz limit, so VM2 gets 6 GHz. The pool's reservation is satisfied (6+6=12 >=10). Option A is wrong because it ignores that host capacity is less than pool limit.

Option C is wrong because VM2 cannot get 8 GHz due to host limit. Option D is wrong because pool reservation does not allocate additional resources.

87
MCQhard

A vSphere cluster uses vSAN with deduplication and compression enabled. An administrator notices that IOPS for a VM is lower than expected despite low CPU and memory utilization on hosts. Which of the following is most likely the cause?

A.The VM storage policy has no read cache reservation
B.vSAN object repair is consuming disk bandwidth
C.The VM is running on a host with a vSAN disk capacity tier that is 80% full
D.Deduplication and compression overhead is causing increased CPU usage on storage controller
AnswerD

Dedupe/compression consumes CPU, and if saturated, can throttle I/O operations.

Why this answer

Option C is correct because deduplication and compression use CPU on each host, which can become a bottleneck for IOPS. Option A is wrong; repair is done at off-peak. Option B is wrong; read cache reservation is not a primary cause.

Option D is wrong; capacity utilization itself does not directly reduce IOPS unless near full causing rebalance.

88
MCQeasy

What is the maximum number of virtual CPUs (vCPUs) that can be allocated to a virtual machine on vSphere 8 Enterprise Plus?

A.128
B.512
C.64
D.256
AnswerD

vSphere 8 supports up to 256 vCPUs per VM.

Why this answer

Option A is correct because vSphere 8 supports up to 256 vCPUs per VM (with appropriate licensing). Option B is incorrect because 128 was the limit in vSphere 6.5. Option C is incorrect because 512 is not supported.

Option D is incorrect because 64 is lower than current maximum.

89
MCQmedium

An administrator observes that a VM with 4 vCPUs running on a host with hyperthreading enabled shows high %CSTP (co-stop) values in esxtop. What is a likely cause?

A.The VM has CPU affinity configured forcing vCPUs to specific pCPUs.
B.The VM's memory reservation is too high.
C.The host has deep C-states enabled causing CPU idle savings.
D.The host memory is overcommitted causing swapping.
AnswerA

CPU affinity can restrict scheduling and cause co-stop when pCPUs are not all available.

Why this answer

Co-stop occurs when the hypervisor is unable to schedule all vCPUs of a VM simultaneously because the pCPUs are not all available at the same time. This is often due to CPU affinity settings or physical CPU contention. C-state issues and memory pressure do not directly cause co-stop.

90
MCQeasy

Based on the exhibit, which VM (indicated by the row) is most likely experiencing severe CPU scheduling contention?

A.The VM with %RDY = 2.3
B.The VM with %RDY = 30.0
C.The VM with %RDY = 15.5
D.The VM with %RDY = 0.5
AnswerB

30% ready time indicates severe CPU scheduling contention.

Why this answer

The row with the highest %RDY (30.0) indicates the VM is spending a large percentage of time ready to run but not being scheduled, which is a sign of severe CPU contention. The other rows have lower %RDY values.

91
MCQhard

A vSphere administrator observes that a VM's memory usage is high, and the host memory is overcommitted. The VM has a memory balloon driver installed and running. Which metric in esxtop would the administrator check to confirm that ballooning is reclaiming memory?

A.SWCUR
B.MCTLSZ
C.ACTV
D.VMMEMCTL
AnswerB

MCTLSZ is the memory balloon size, showing how much memory the balloon driver has reclaimed.

Why this answer

The MCTLSZ field in esxtop's memory section shows the current amount of memory reclaimed by the balloon driver. ACTV shows active memory, SWCUR shows swapped memory, and VMMEMCTL shows memory control overhead. MCTLSZ directly indicates balloon activity.

92
MCQhard

A vSphere administrator is troubleshooting a performance issue on a VM that has high average latency on its virtual disks. The VM is stored on a VMFS datastore backed by an all-flash array. The VM has 4 vCPUs and 16GB memory. The administrator runs esxtop and sees %USEDRDY: 0.5, %MLMTD: 10, %SWPWT: 0. What is the most likely cause of the high disk latency?

A.Memory ballooning is causing excessive swapping
B.CPU ready time is high
C.Storage controller queue depth is full
D.The VM is experiencing memory contention that is manifesting as disk latency
AnswerD

High %MLMTD (10%) indicates memory contention, which can degrade overall VM performance including disk I/O.

Why this answer

%MLMTD indicates memory contention. When memory resources are constrained, the hypervisor may throttle the VM, affecting all operations including disk I/O. Option D is correct.

Options A and C are not supported by the esxtop metrics. Option B is incorrect because %SWPWT is 0, indicating no swapping.

93
MCQmedium

A company runs a four-node vSphere 7 cluster with all-flash storage and 25GbE networking. The cluster hosts 50 VMs, including a critical database VM with 16 vCPUs and 64 GB memory. The database VM's performance has degraded over the past week. vCenter reports high CPU ready time (average 15%) for the database VM, while other VMs show less than 2%. CPU utilization on the host is 70%. The database VM is configured with CPU affinity pinned to cores 0-15 on a dual-socket host with 16 cores per socket (32 total). The administrator also notices that the database VM's CPU co-stop counter is high. What should the administrator do to improve performance?

A.Migrate the database VM to a host with fewer VMs.
B.Enable CPU hot-add for the database VM.
C.Remove the CPU affinity setting for the database VM.
D.Increase the number of vCPUs for the database VM to 32.
AnswerC

Allows the scheduler to balance across NUMA nodes, reducing ready time and co-stop.

Why this answer

The high CPU ready time (15%) and elevated co-stop counter indicate that the database VM is suffering from contention due to CPU affinity pinning to cores 0-15. On a dual-socket host with 16 cores per socket, pinning to cores 0-15 restricts the VM to a single NUMA node, preventing the scheduler from load-balancing across both sockets. Removing the affinity allows the ESXi scheduler to distribute vCPUs across all 32 cores, reducing co-scheduling overhead and ready time.

Exam trap

The trap here is that candidates often assume high ready time means the host is overloaded and choose to migrate or add vCPUs, overlooking that CPU affinity artificially constrains the scheduler and causes co-stop delays.

How to eliminate wrong answers

Option A is wrong because migrating to a host with fewer VMs does not address the root cause—the CPU affinity restriction causing NUMA imbalance and co-stop contention; the current host already has low overall CPU utilization (70%). Option B is wrong because enabling CPU hot-add does not reduce ready time or co-stop counter; it only allows adding vCPUs without reboot, which would likely worsen contention. Option D is wrong because increasing vCPUs to 32 would exacerbate co-scheduling overhead and co-stop delays, especially with affinity pinning to a single socket, leading to further performance degradation.

94
MCQmedium

A vSphere administrator is troubleshooting a VM that hosts a critical database. The VM is configured with 8 vCPUs and 64 GB memory on an ESXi host with two 10-core CPUs (hyperthreading enabled). Performance charts show CPU ready time averaging 12% during peak hours, and the database application is experiencing high transaction latency. The administrator has verified that no other VMs are contending for CPU. Which action will most likely reduce CPU ready time without negatively impacting database performance?

A.Disable hyperthreading on the host.
B.Assign a CPU affinity mask to pin the VM to specific physical cores.
C.Increase the VM's memory reservation.
D.Reduce the number of vCPUs assigned to the VM to 4.
AnswerD

Reducing vCPUs decreases CPU scheduling overhead and can lower ready time for many applications.

Why this answer

Option C is correct because reducing the number of vCPUs to match the actual workload reduces scheduler overhead and improves cache locality. A VM with 8 vCPUs on a host with 40 logical CPUs should not normally have high ready time unless the vCPU count is excessive relative to the workload. Reducing to 4 vCPUs often resolves contention without degrading throughput because many database workloads do not scale linearly beyond 4 vCPUs.

Option A is wrong because disabling hyperthreading reduces logical CPUs, potentially increasing contention. Option B is wrong because increasing memory does not affect CPU ready time. Option D is wrong because CPU affinity can lead to unbalanced load and is not a best practice for DRS clusters.

95
MCQeasy

Which tool provides real-time performance monitoring at the ESXi host level, including CPU, memory, network, and storage metrics?

A.dcli
B.esxtop
C.resxtop
D.vCenter performance charts
AnswerB

esxtop runs directly on the ESXi host and shows real-time metrics.

Why this answer

esxtop is a command-line tool that provides real-time host performance data. vCenter performance charts are historical. resxtop is for remote usage, and dcli is a different tool.

96
MCQmedium

A vSphere environment experiences periodic performance degradation during peak business hours. Analysis shows that one ESXi host's CPU ready time for a specific mission-critical VM is consistently above 20%. Which corrective action should be taken first?

A.Increase the VM's memory reservation
B.Set a higher CPU limit on the VM
C.Migrate the VM to a different host with lower CPU utilization
D.Add more vCPUs to the VM
AnswerC

Moving the VM to a host with more available CPU resources reduces ready time directly.

Why this answer

High ready time indicates CPU contention. Moving the VM to a less loaded host using DRS or manual migration can immediately reduce ready time. Increasing resources without addressing contention is ineffective.

97
Multi-Selecthard

Which THREE actions would help reduce network latency for VMs in a vSphere environment?

Select 3 answers
A.Separate vMotion traffic onto a different VLAN.
B.Enable jumbo frames on the virtual switch and physical network.
C.Increase the MTU on the vSphere Standard Switch to 9000.
D.Use Network I/O Control to set a higher network share for latency-sensitive VMs.
E.Assign dedicated physical NICs for VM traffic.
AnswersB, D, E

Larger MTU reduces per-packet overhead.

Why this answer

B is correct because enabling jumbo frames (MTU 9000) on both the virtual switch and physical network reduces CPU overhead and improves throughput by allowing larger packets, which decreases the number of packets per second and thus lowers latency for VM traffic. This is particularly effective for storage and high-bandwidth workloads, as it reduces fragmentation and processing delays.

Exam trap

The trap here is that candidates often confuse increasing MTU on the virtual switch alone (Option C) as sufficient, forgetting that jumbo frames require end-to-end consistency across the entire physical network to avoid fragmentation and performance degradation.

98
MCQmedium

An administrator configures a resource pool with a CPU reservation and expandable reservation enabled. The root resource pool has 100% of cluster CPU resources. A VM inside the resource pool with no reservation requests CPU resources. What will happen when the VM tries to power on?

A.The VM can power on but will be limited to the resource pool's shares.
B.The VM can power on using resources from the resource pool or its parent due to expandable reservation.
C.The VM cannot power on because the resource pool has a reservation set.
D.The VM can power on using resources from the resource pool only if it has a reservation.
AnswerB

Expandable reservation allows the pool to borrow from parent if needed, so the VM can start.

Why this answer

Option D is correct because expandable reservation allows the resource pool to borrow CPU resources from the parent pool if needed. Since the VM has no reservation, it can power on as long as there are any unreserved resources in the resource pool or parent. Option A is incorrect because the VM can power on without a reservation.

Option B is incorrect because reservation is not mandatory to power on. Option C is incorrect because expandable reservation allows borrowing from parent.

99
MCQmedium

A vSphere administrator notices that a VM running a critical database is experiencing high latency on its virtual disk. The VM uses a VMDK on a datastore shared by several other VMs. The datastore is backed by an all-flash array. Which action would best reduce latency without increasing storage capacity?

A.Increase the virtual disk shares for the VM
B.Move the VM to another datastore
C.Set a higher I/O limit on the VM
D.Enable Storage I/O Control (SIOC) on the datastore
AnswerD

SIOC uses latency thresholds to throttle I/O and reduce congestion, improving latency for critical VMs.

Why this answer

Storage I/O Control (SIOC) can enforce I/O shares and limits to prioritize latency-sensitive VMs. Increasing shares or limits may not reduce latency if the array is saturated. Moving to another datastore may not be feasible.

100
MCQmedium

Refer to the exhibit. An administrator runs esxtop and sees the above output for a virtual machine. What is the most likely cause of the performance issue?

A.The VM is running on a host with Hyper-Threading disabled.
B.The memory of the VM is overcommitted.
C.The host has too many other VMs competing for resources.
D.The VM has too many vCPUs for the available physical cores.
E.The VM has CPU affinity configured to a single core.
AnswerD

High %RDY indicates vCPU contention, and high %CSTP indicates co-scheduling overhead, both symptoms of vCPU overcommitment.

Why this answer

Option A is correct because high %RDY (45.2%) and %CSTP (30.1%) indicate that the VM's vCPUs are ready to run but waiting for scheduling, and there is significant co-scheduling overhead. This is typical when a VM has too many vCPUs relative to the physical cores available, causing CPU overcommitment. Options B, C, D, and E could contribute to performance issues, but the specific combination of high %RDY and %CSTP points to vCPU overcommitment.

101
Multi-Selectmedium

Which TWO factors contribute to increased CPU ready time on a vSphere host?

Select 2 answers
A.Memory ballooning due to memory over-commitment.
B.Over-provisioning of vCPUs relative to physical cores.
C.Using CPU affinity to pin VMs to specific cores.
D.Enabling hyper-threading on hosts that already have high vCPU-to-core ratios.
E.High disk latency on the datastore.
AnswersB, D

Too many vCPUs cause contention and ready time.

Why this answer

Option B is correct because over-provisioning vCPUs relative to physical cores leads to contention for CPU resources. When the total number of vCPUs across all powered-on VMs exceeds the number of logical processors (including hyper-threads), the ESXi scheduler must time-share access, resulting in increased ready time as VMs wait for a physical core to become available.

Exam trap

The trap here is that candidates often confuse memory over-commitment (ballooning) with CPU over-commitment, or mistakenly think that CPU affinity always reduces ready time, when in fact it can increase ready time if not used carefully due to load imbalance and reduced scheduler flexibility.

102
Multi-Selecteasy

A vSphere administrator is scaling a cluster by adding new ESXi hosts and VMs. Which two actions help ensure that performance continues to meet requirements as the environment grows? (Choose two.)

Select 2 answers
A.Place all VMs on the host with the fastest processors.
B.Enable DRS with fully automated mode.
C.Use a vSphere Distributed Switch for network scalability.
D.Configure vSphere HA on the cluster.
E.Set CPU reservations on all VMs.
AnswersB, C

DRS automates initial placement and ongoing load balancing, optimizing performance as VMs are added.

Why this answer

Option C is correct because DRS with fully automated mode automatically balances VM workloads across hosts, preventing resource contention. Option E is correct because a vSphere Distributed Switch (VDS) provides standardized network configuration and allows for network I/O control, which is essential for scaling. Options A, B, and D are incorrect: CPU reservations can waste resources and limit efficiency; HA is for availability, not performance; placing all VMs on the fastest host creates a single point of contention and does not scale.

103
Multi-Selecteasy

Which TWO are correct statements about vSphere resource pools? (Select two.)

Select 2 answers
A.Resource pools can be nested.
B.Resource pools can be used to isolate performance for individual VMs.
C.Resource pools inherit settings from parent pools by default.
D.Resource pools are only available in clusters.
E.Resource pools can have shares, limits, and reservations.
AnswersA, E

Resource pools support hierarchical nesting.

Why this answer

Correct: A (resource pools can be nested) and B (they have shares, limits, reservations). Option C is false because resource pools can exist on standalone hosts as well. Option D is false because resource pools aggregate resources for multiple VMs, not isolate individual VMs.

Option E is false because child pools do not inherit settings by default; they can be configured independently.

104
Multi-Selecthard

A vSphere cluster is experiencing high CPU ready time across multiple hosts during peak hours. The cluster consists of 8 hosts, each with 2 sockets and 8 cores per socket (hyperthreading enabled). DRS is set to a moderately aggressive migration threshold. The administrator needs to reduce CPU contention without disrupting workloads. Which three actions should the administrator consider? (Choose three.)

Select 3 answers
A.Upgrade the ESXi hosts to models with higher CPU clock speeds.
B.Reduce the number of VMs running on each host.
C.Ensure Hyper-Threading is enabled on all hosts.
D.Configure CPU affinity for VMs with high vCPU counts.
E.Increase the DRS migration threshold to the most aggressive setting.
AnswersA, B, C

Faster CPUs improve per-core performance, reducing the impact of contention.

Why this answer

Enabling hyperthreading increases logical CPUs and can reduce ready time. Reducing the number of VMs per host decreases overall demand. Upgrading to faster CPUs increases per-core capacity.

Setting CPU affinity on VMs is not recommended as it limits DRS balancing. Increasing the DRS migration threshold to the most aggressive may cause excessive migrations and does not address the root cause. Adding vCPUs to VMs would worsen contention.

105
Multi-Selecteasy

An administrator is analyzing performance data for a vSphere cluster and wants to identify VMs that are experiencing memory pressure. Which two metrics from esxtop or vCenter performance charts reliably indicate that a VM is actively reclaiming memory due to contention? (Choose two.)

Select 2 answers
A.Consumed memory
B.Active memory
C.Ballooned memory
D.Swapped memory
E.Overhead memory
AnswersC, D

Ballooned memory shows the amount of memory reclaimed via the balloon driver, a sign of memory pressure.

Why this answer

Memory ballooning and swapping are clear indicators of memory pressure. Ballooning occurs when the VMkernel reclaims memory from a VM via the balloon driver, and swapping occurs when the hypervisor is forced to swap pages to disk. Active memory is the currently used memory, not a sign of pressure.

Consumed memory includes overhead and target memory. Overhead memory is the hypervisor overhead, not a pressure metric.

106
Multi-Selecteasy

Which TWO actions are effective in reducing CPU ready time on a vSphere host that is heavily overcommitted on CPU? (Choose two.)

Select 2 answers
A.Add more hosts to the cluster.
B.Enable hyperthreading on the host CPUs.
C.Increase the number of vCPUs on VMs with high ready times.
D.Reduce the number of vCPUs on over-provisioned VMs.
E.Configure CPU affinity to pin vCPUs to specific pCPUs.
AnswersA, D

More hosts spread the load, increasing available pCPUs and reducing contention.

Why this answer

Reducing the number of vCPUs on over-provisioned VMs directly decreases scheduling contention. Adding more hosts to the cluster increases the pool of physical CPUs, reducing overcommitment. Increasing vCPUs worsens the issue.

Enabling hyperthreading does not reduce ready time if the host is already CPU-bound. Configuring CPU affinity restricts scheduling and can increase ready time.

107
Drag & Dropmedium

Arrange the steps to add an existing virtual machine to a vCenter Server inventory.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order

Why this order

Initiate add host, specify host details, authenticate, select VMs, finish.

108
MCQmedium

A vSphere administrator is troubleshooting a VM that is experiencing excessive disk latency. The VM is on a datastore accessed via NFS over a 1GbE network. The host shows high network utilization. Which action should be taken to improve performance?

A.Enable Storage I/O Control on the datastore.
B.Convert the datastore from NFS to VMFS.
C.Increase the memory reservation for the VM.
D.Upgrade the network link to 10GbE or enable multiple NICs with teaming.
AnswerD

Higher bandwidth reduces latency and congestion.

Why this answer

The VM is experiencing excessive disk latency due to high network utilization on the 1GbE link. Since NFS storage traffic is entirely network-bound, upgrading to 10GbE or enabling multiple NICs with teaming increases the available bandwidth, reduces congestion, and directly addresses the root cause of the latency. This is the most effective action because the bottleneck is at the network layer, not the storage protocol or VM configuration.

Exam trap

The trap here is that candidates may assume Storage I/O Control (SIOC) can solve any storage latency issue, but SIOC only manages contention at the storage array level, not network bandwidth limitations, which is the actual bottleneck in this NFS scenario.

How to eliminate wrong answers

Option A is wrong because Storage I/O Control (SIOC) manages storage queue depth and I/O shares at the datastore level, but it does not increase network bandwidth or resolve a saturated 1GbE link; it is designed for VMFS datastores with multiple VMs contending for storage resources, not for NFS network congestion. Option B is wrong because converting from NFS to VMFS changes the storage protocol but does not increase network throughput; the 1GbE bottleneck remains, and VMFS over iSCSI or Fibre Channel would still suffer from the same network limitation. Option C is wrong because increasing the memory reservation for the VM does not affect network I/O or disk latency; memory reservations guarantee physical RAM but have no impact on storage path bandwidth or network utilization.

109
MCQhard

Refer to the exhibit. The performance data shows MEMCTL at 5% and SWPOUT at 2%. What does this indicate about the host?

A.The host is over-committed on memory, causing ballooning and swapping.
B.The host is experiencing CPU contention.
C.The host has network congestion.
D.The host has high storage latency.
AnswerA

MEMCTL and SWPOUT indicate memory pressure.

Why this answer

MEMCTL at 5% indicates the ESXi host's memory balloon driver (vmmemctl) is actively reclaiming memory from virtual machines, while SWPOUT at 2% shows the host is swapping guest memory to disk. Together, these values confirm the host is over-committed on memory, forcing the hypervisor to use both ballooning and swapping to free up memory for VMs.

Exam trap

The trap here is that candidates may confuse memory over-commitment indicators (MEMCTL, SWPOUT) with CPU or storage performance metrics, leading them to select CPU contention or storage latency options instead of recognizing the specific memory reclamation counters.

How to eliminate wrong answers

Option B is wrong because CPU contention is measured by metrics like %RDY, %CSTP, or CPU ready time, not MEMCTL or SWPOUT. Option C is wrong because network congestion is indicated by dropped packets, high latency, or errors on virtual switches, not memory-related counters. Option D is wrong because high storage latency is shown by metrics such as KAVG, DAVG, or QAVG in esxtop, not by memory ballooning or swap rates.

110
Multi-Selecthard

Which THREE vSphere features directly contribute to performance and scaling of virtualized workloads? (Select THREE.)

Select 3 answers
A.vSphere vMotion
B.Storage I/O Control (SIOC)
C.vSphere DRS
D.vSphere Fault Tolerance
E.vSphere HA
AnswersA, B, C

vMotion allows live migration for load balancing and maintenance, aiding scaling.

Why this answer

DRS balances load, SIOC manages storage I/O, and vMotion enables migration for scaling and maintenance. HA provides availability, FT provides fault tolerance, and Backup does not scale performance.

111
MCQmedium

An administrator observes that a VM with 16 vCPUs on a 2-socket host (8 cores per socket, HT disabled) is experiencing poor performance. The VM's NUMA topology shows 2 vNUMA nodes, but performance is worse than expected. What is the most likely reason?

A.The VM is configured with a single virtual socket with 16 cores, causing a single vNUMA node that spans both physical NUMA nodes
B.The VM's memory is reserved but not backed by physical pages
C.The virtual hardware version is too old
D.The host has insufficient RAM
AnswerA

A single vNUMA node across physical NUMA nodes forces cross-node memory access, increasing latency.

Why this answer

Option A is correct. If the VM is configured with a single virtual socket (16 cores), vSphere creates one vNUMA node that spans both physical NUMA nodes, causing cross-node memory access. Option B is wrong; insufficient RAM would cause ballooning or swapping.

Option C is wrong; memory reservation ensures pages are backed. Option D is wrong; old virtual hardware may limit features but not directly cause this.

← PreviousPage 2 of 2 · 111 questions total

Ready to test yourself?

Try a timed practice session using only vSphere Performance and Scaling questions.