Courseiva

CCNA Cloud Troubleshooting Questions

22 of 97 questions · Page 2/2 · Cloud Troubleshooting topic · Answers revealed

76
MCQeasy

A cloud administrator is troubleshooting a performance issue where users report slow access to a web application hosted in a public cloud. The application uses an auto-scaling group of web servers behind a load balancer. The administrator notices that the CPU utilization on the web servers is low, but the load balancer metrics show a high number of pending requests. What is the most likely cause?

A.The web servers are throttled by the cloud provider's API rate limiting.
B.The DNS records point to an incorrect IP address.
C.The security group is blocking inbound traffic on port 80.
D.The load balancer health checks are misconfigured, causing healthy instances to be removed.
AnswerD

Misconfigured health checks can cause the load balancer to stop sending traffic to healthy instances, leading to pending requests.

Why this answer

Misconfigured health checks can cause the load balancer to incorrectly mark healthy instances as unhealthy and remove them from the target group. This results in fewer instances handling traffic, leading to a buildup of pending requests even though the remaining instances have low CPU utilization. Option A is incorrect because API rate limiting would affect API calls, not HTTP traffic to the web servers.

Option B is incorrect because an incorrect DNS IP would prevent users from reaching the application entirely, not cause pending requests. Option C is incorrect because blocking inbound traffic on port 80 would cause connection timeouts or failures, not a high number of pending requests.

77
MCQhard

A company is deploying a critical application in the cloud and needs to ensure that it can automatically recover from an intent—a failure of an entire cloud provider region. Which of the following architectures should be implemented?

A.Active-passive deployment across two regions with DNS-based failover
B.Active-passive deployment across multiple availability zones in the same region
C.Single-region deployment with auto-scaling groups
D.Active-active deployment across multiple availability zones in the same region
AnswerA

Cross-region failover provides disaster recovery if a region fails.

Why this answer

An active-passive deployment across two regions with DNS-based failover ensures that if one entire region fails, traffic is routed to the passive region, providing disaster recovery at the region level. Option B is wrong because multiple availability zones within a single region cannot survive the failure of the entire region. Option C is wrong because auto-scaling groups in a single region do not protect against region failure.

Option D is wrong because active-active across AZs within one region also cannot survive a region-level failure.

78
MCQhard

After deploying a new application version, users get 503 errors. The application runs on Kubernetes in a private cloud. What is the most likely cause?

A.Application health check failing
B.Incorrect ingress configuration
C.Insufficient pod resources
D.Node port exhaustion
AnswerA

Health check failures cause pods to be removed from service, resulting in 503.

Why this answer

503 errors typically indicate that the application is not passing health checks, causing the load balancer or Kubernetes service to stop routing traffic to the affected pods. Option B is incorrect because an incorrect ingress configuration usually results in 404 errors or connection timeouts, not 503. Option C is incorrect because insufficient pod resources lead to OOM kills or CPU throttling, which may cause 503s only indirectly if health checks fail, but the more direct cause is failed health checks.

Option D is incorrect because node port exhaustion is rare and would cause connection refused, not 503.

79
MCQhard

A hybrid cloud setup uses a site-to-site VPN between on-premises and a public cloud. Users report intermittent connectivity failures. Traceroutes show packets dropping after a specific hop. What is the most likely cause?

A.The routing tables on the cloud side are missing routes for the on-premises network.
B.The VPN tunnel is misconfigured with incorrect pre-shared keys.
C.The VPN gateway is overloaded due to too many tunnels.
D.The MTU setting on the VPN endpoint is too low, causing packet fragmentation.
AnswerD

Low MTU can cause packets to be dropped if DF flag is set.

Why this answer

An MTU mismatch within the VPN tunnel can cause packets to be fragmented or dropped when they exceed the MTU size, leading to intermittent connectivity issues. Traceroute showing drops after a specific hop suggests fragmentation problems. Option A is incorrect: missing routes would cause complete lack of connectivity, not intermittent drops.

Option B is incorrect: incorrect pre-shared keys would prevent the VPN tunnel from establishing at all. Option C is incorrect: an overloaded gateway might cause latency or failures but typically not specific hop drops in traceroute.

80
MCQeasy

A cloud administrator is responsible for a multi-tier application hosted in a public cloud. The application consists of a web tier, application tier, and database tier. Recently, users have reported that the application is responding slowly during peak hours. The administrator checks the cloud monitoring dashboard and notices that the web tier instances are running at 90% CPU utilization, but the auto-scaling group has not triggered any scaling events. The scaling policy is set to scale out when average CPU exceeds 80% for 5 minutes. What should the administrator do to resolve this issue?

A.Manually increase the number of web tier instances
B.Increase the CPU threshold to 95% to avoid unnecessary scaling
C.Review the cooldown period settings of the auto-scaling group
D.Check the health check configuration of the load balancer
AnswerC

A long cooldown period can delay scaling even when the threshold is breached.

Why this answer

The cooldown period settings determine how long the auto-scaling group waits before initiating another scaling activity after a previous scaling event. If the cooldown period is too long, new scaling events may be suppressed even when the CPU threshold is exceeded for the required duration. The administrator should review and potentially reduce the cooldown period to allow the auto-scaling group to respond more quickly to high CPU utilization.

Option A is wrong because manual scaling is a temporary workaround and does not address the underlying auto-scaling configuration issue. Option B is wrong because increasing the CPU threshold to 95% would make scaling less sensitive, likely worsening performance during peak hours. Option D is wrong because health check configuration affects load balancer traffic routing, not the triggering of scaling events based on CPU metrics.

81
MCQmedium

A cloud administrator is troubleshooting connectivity to a virtual machine with IP address 10.10.10.10 from another VM on the same subnet. The output of ping and traceroute commands is shown. What is the most likely cause of the connectivity issue?

A.The destination VM's network interface is disabled.
B.The destination VM is powered off.
C.The source VM's routing table does not have a default gateway.
D.The destination VM's security group is blocking ICMP.
AnswerA

If the network interface is disabled, the VM will not respond to ARP requests, causing the gateway to return 'Destination Host Unreachable'.

Why this answer

A disabled network interface on the destination VM would cause the VM to be unreachable from the same subnet, even though the VM itself is powered on. Ping and traceroute would fail with no response, as the NIC is not operational at Layer 2, preventing ARP resolution and frame delivery. This matches the symptom of no connectivity despite being on the same subnet, where routing and security groups are not factors.

Exam trap

The trap here is that candidates often assume a powered-off VM is the cause, but the question specifies the VM is on the same subnet and the output shows no response at all, which points to a Layer 2 issue (disabled NIC) rather than a Layer 3 or higher issue like security groups or routing.

How to eliminate wrong answers

Option B is wrong because if the destination VM were powered off, the hypervisor would not respond to ARP requests, but the question states the VM is on the same subnet and the issue is connectivity from another VM; a powered-off VM would also show no response, but the specific symptom of a disabled NIC is more precise and matches the output of ping/traceroute failing without any ICMP unreachable messages. Option C is wrong because a default gateway is only needed for traffic destined outside the local subnet; since both VMs are on the same subnet, the source VM can communicate directly via ARP and does not require a default gateway. Option D is wrong because a security group blocking ICMP would typically result in no ping reply but the traceroute might show intermediate hops or the destination host responding with ICMP unreachable; however, on the same subnet, a security group would not prevent ARP resolution or Layer 2 communication, and the question's output shows no response at all, which is inconsistent with a security group blocking ICMP (which would still allow ARP and possibly TCP/UDP).

82
Multi-Selectmedium

Which TWO steps should an administrator take to troubleshoot a cloud VM that fails to boot?

Select 2 answers
A.Check the VM's console logs for error messages.
B.Verify the root disk is attached.
C.Check the boot order configuration.
D.Reboot the hypervisor host.
E.Delete and recreate the VM instantly.
AnswersA, C

Console logs show kernel panics or boot issues.

Why this answer

Console logs provide detailed error messages during the boot process, helping identify the root cause of boot failure. Option C is correct because incorrect boot order (e.g., trying to boot from a non-bootable device) can prevent the VM from starting; verifying and adjusting boot order is a standard troubleshooting step. Option B is incorrect because while verifying the root disk is attached is a basic check, it alone does not address other common boot issues (e.g., corrupted OS, incorrect boot configuration).

Option D is incorrect because rebooting the hypervisor host affects multiple VMs and is not a targeted troubleshooting step for a single VM failing to boot. Option E is incorrect because deleting and recreating the VM is a drastic measure that results in data loss and should only be considered after all other troubleshooting steps have failed.

83
MCQhard

A cloud engineer is troubleshooting a storage performance issue. The storage is backed by a SAN with a mix of SSD and HDD drives. Which of the following metrics would BEST indicate that the storage subsystem is the bottleneck?

A.Low memory usage on the hypervisor
B.High network utilization on storage network links
C.High disk queue depth and latency
D.High CPU utilization on all application servers
AnswerC

Queue depth over 2-3 per disk with high latency indicates storage bottleneck.

Why this answer

High disk queue depth and latency directly indicate that I/O requests are waiting, which is a classic sign of a storage bottleneck. Low memory usage (A) does not indicate a storage issue. High network utilization (B) could be caused by storage traffic but does not confirm the storage subsystem is the bottleneck; it could be normal.

High CPU utilization (D) points to compute, not storage.

84
MCQhard

A cloud orchestration template fails to deploy resources with the error 'Resource limit exceeded'. The administrator has enough quota for all services. What is the most likely cause?

A.The template has a syntax error in the JSON.
B.A specific resource type has reached its service limit.
C.The custom image used is corrupted.
D.The IAM role used does not have permission to create resources.
AnswerB

Service limits are per-resource and can be lower than account quota.

Why this answer

Certain resource types have service-specific limits that are separate from the overall account quota. Even if the administrator has enough total quota, a specific resource type (e.g., virtual machines, storage accounts) may have reached its maximum allowed count. Option A is incorrect because a syntax error would cause a different error, such as parsing failure.

Option C is incorrect because a corrupted image would typically result in image-related errors. Option D is incorrect because permission issues would generate an access denied error, not 'Resource limit exceeded'.

85
MCQmedium

A cloud administrator manages a web application that uses an auto scaling group (ASG) with a minimum of 2 and maximum of 10 instances. The CPU utilization for the ASG averages 40%. However, during peak hours, users experience intermittent timeouts. The administrator reviews the scaling policy, which is set to scale out when CPU exceeds 70% for 5 minutes. What is the most likely cause of the timeouts?

A.The maximum number of instances is too low.
B.The health checks are marking healthy instances as unhealthy.
C.The CPU threshold is too low, causing premature scaling.
D.The scale-out cooldown period is too long, delaying the addition of new instances.
AnswerD

A long cooldown delays scaling during rapid spikes, leading to timeouts.

Why this answer

During peak hours, CPU utilization may spike quickly, but the scaling policy requires CPU to exceed 70% for 5 minutes before triggering a scale-out. If the scale-out cooldown period is too long, additional instances are delayed, causing the existing instances to become overloaded and leading to timeouts. Option A is incorrect because the maximum of 10 instances is likely sufficient; the problem is the speed of scaling.

Option B is incorrect because health check failures would cause instance replacement, not timeouts from overload. Option C is incorrect because a 70% threshold is not too low; a lower threshold would cause premature scaling, not timeouts.

86
MCQmedium

Refer to the exhibit. An administrator is unable to SSH into a cloud server with IP 10.0.1.10 from a remote location (outside the 10.0.0.0/16 network). What is the most likely cause?

A.The firewall rule order is incorrect
B.The firewall is dropping all packets on port 22
C.The SSH host key has changed
D.The SSH service is not running
AnswerA

The drop rule appears before the allow rule, so external traffic is dropped before reaching the allow rule.

Why this answer

Firewall rules are evaluated in order; the first rule (rule #1) drops all SSH traffic from any source, and the second rule (rule #2) permits SSH traffic only from the internal network (10.0.0.0/16). Since the remote location is outside this network, the packet matches the first rule and is dropped before reaching the second rule. Option B is incorrect because the firewall is not dropping all packets on port 22; it only drops those from external sources due to the rule order.

Option C is incorrect because a host key change would cause a different SSH warning, not a connection timeout. Option D is incorrect because if the SSH service were not running, the error would be 'connection refused' rather than a timeout.

87
MCQhard

An organization's hybrid cloud environment uses a VPN connection between on-premises and the cloud. Intermittent connectivity drops are reported during peak hours. The VPN logs show rekeying failures. Which configuration is most likely the cause?

A.The VPN tunnel is using a pre-shared key that has expired
B.The IPSec dead peer detection interval is set too high
C.The VPN gateway throughput is exceeded
D.The on-premises firewall is blocking IKE packets
AnswerB

A high DPD interval delays detection of unresponsive peers, causing rekeying failures during high traffic.

Why this answer

A dead peer detection (DPD) interval set too high delays detection of lost peers, causing rekeying failures under load. Option A is wrong because pre-shared keys don't expire. Option C is wrong because throughput exceeded would show packet loss or high latency, not rekeying failures.

Option D is wrong because blocking IKE packets would prevent the VPN from establishing at all.

88
MCQhard

A company uses a cloud provider's IAM service to manage access. An administrator creates a new IAM role for an application running on an EC2 instance to access an S3 bucket. The application is unable to read objects from the bucket, even though the role has an attached policy that allows s3:GetObject on the bucket. The administrator verifies that the instance is correctly associated with the role. What is the most likely cause?

A.The S3 bucket policy denies access to the role.
B.The role's trust policy does not allow the EC2 service to assume the role.
C.The role's permissions policy has a condition key that restricts access to a specific IP range.
D.The instance's security group is blocking outbound traffic to S3.
AnswerC

A condition like ipAddress could limit access to allowed IPs, and the instance's IP may not be included.

Why this answer

The role's permissions policy is an IAM policy attached to the role that defines what actions the role can perform. If this policy includes a condition key such as `ipAddress` or `SourceIp`, it can restrict access to requests coming from specific IP addresses. If the EC2 instance's public IP address is not within the allowed range, the `s3:GetObject` call will be denied, even though the permission is granted.

Option A is incorrect because the stem does not mention any bucket policy, and the question asks for the most likely cause; a bucket policy denying access would be less common than a condition on the role's policy. Option B is incorrect because if the trust policy did not allow EC2 to assume the role, the instance would not receive temporary credentials at all, and the administrator would likely see errors during association. Option D is incorrect because security groups by default allow all outbound traffic, and S3 access uses HTTPS over the internet or VPC endpoints, so outbound blocking is unlikely unless explicitly configured.

89
Multi-Selectmedium

A company's application is unable to connect to a managed cloud database. The database is deployed in a VPC with public accessibility disabled. The application runs on an EC2 instance in the same VPC. Which three troubleshooting steps should the administrator take? (Choose three.)

Select 3 answers
A.Ensure the VPC has an internet gateway attached.
B.Check the network ACL associated with the database subnet for appropriate rules.
C.Verify that the database endpoint is correctly configured in the application.
D.Verify that the EC2 instance has a public IP address.
E.Check the security group for the database to ensure it allows inbound traffic from the EC2 instance's security group.
AnswersB, C, E

Correct. Network ACLs control traffic at the subnet level and could block the connection.

Why this answer

Options B, C, and E are correct. Option A is incorrect because an internet gateway is not needed for communication within the same VPC. Option D is incorrect because a public IP is not required for instances in the same VPC.

Option B checks network ACL rules for the database subnet, which can affect inbound/outbound traffic. Option C verifies the database endpoint configuration in the application, which could be misconfigured. Option E checks the security group for the database, ensuring it allows inbound traffic from the EC2 instance's security group.

90
MCQmedium

A company recently migrated an application to the cloud. The application uses a load balancer in front of multiple EC2 instances. After the migration, users report that they occasionally receive 'Connection refused' errors. The administrator checks the load balancer health check logs and finds that some instances are marked unhealthy intermittently. The application's health check endpoint returns HTTP 200 when tested manually from the admin's workstation. What is the most likely cause?

A.The health check interval is too short
B.Security group rules blocking the load balancer health checks
C.The instances are running out of memory
D.The application is not binding to the correct IP address
AnswerB

If the security group blocks health check traffic, the load balancer may intermittently mark instances unhealthy.

Why this answer

The load balancer health checks are failing intermittently because the security group rules are blocking the health check traffic from the load balancer. When the health checks are blocked, the instances appear unhealthy. Manual testing from the admin's workstation works because the workstation is not subject to those security group rules.

Option A (short interval) would cause more frequent health checks, not intermittent failures. Option C (memory exhaustion) would cause persistent failures. Option D (incorrect IP binding) would also cause persistent failures.

Therefore, the most likely cause is B.

91
Multi-Selecthard

A cloud administrator is troubleshooting a performance issue where a web application is responding slowly. The application runs on virtual machines in a private cloud. The administrator has verified that CPU and memory utilization are within normal limits. Which TWO additional metrics should the administrator check to diagnose the issue?

Select 2 answers
A.Number of running processes
B.Network latency between the application and database servers
C.Disk I/O wait time on the hypervisor
D.Virtual machine snapshot size
E.Hypervisor version
AnswersB, C

High network latency can cause slow response times even if CPU and memory are fine, as the application waits for database queries.

Why this answer

Network latency between the application and database servers is a critical metric because slow database queries or network congestion can cause the web application to respond slowly even when CPU and memory on the VMs are normal. High latency increases round-trip time for SQL queries, directly impacting page load times. Disk I/O wait time on the hypervisor is also essential because excessive I/O wait indicates storage contention, which can throttle read/write operations for the VMs, leading to application sluggishness.

Exam trap

CompTIA often tests the distinction between VM-level metrics (CPU/memory) and infrastructure-level metrics (network/storage), trapping candidates who overlook that application performance can degrade due to external dependencies even when the VM itself appears healthy.

92
MCQhard

The exhibit shows VPC flow log entries for an EC2 instance (eni-12345678). The administrator is troubleshooting a connectivity problem where an application on 10.0.1.5 occasionally cannot connect to a web server at 10.0.2.10 on port 80. What action should the administrator take?

A.Increase the MTU on the instance to 9001.
B.Add a security group rule allowing inbound TCP/80 from 10.0.1.5.
C.Add a network ACL rule allowing inbound TCP/80 from 10.0.1.5 to the subnet of 10.0.2.10.
D.Add a route to the VPC route table for 10.0.1.5.
AnswerC

NACLs are stateless and require explicit inbound rules; the REJECT indicates a NACL block.

Why this answer

The REJECT entry in the VPC flow log indicates that traffic is being blocked by a network ACL (NACL), which is stateless. Security groups are stateful and do not produce REJECT entries; they either allow or silently drop traffic. To resolve the issue, the administrator must add an inbound rule to the network ACL associated with the subnet of the web server (10.0.2.10) to allow TCP port 80 from the source IP 10.0.1.5.

Option C is correct. Option A is incorrect because increasing the MTU does not affect firewall blocking. Option B is incorrect because a security group rule would not generate a REJECT; the REJECT indicates a NACL blockage.

Option D is incorrect because adding a route does not address firewall filtering.

93
MCQhard

A company uses a hybrid cloud model with an AWS Direct Connect connection to its on-premises network. Users report intermittent connectivity to cloud resources. A network engineer finds packet loss on the Direct Connect virtual interface. Which of the following should be checked FIRST to resolve the issue?

A.The physical port status of the Direct Connect router
B.The MTU setting on the on-premises firewall
C.The BGP session status between the on-premises router and the AWS Direct Connect endpoint
D.The VPN tunnel status for the Direct Connect link
AnswerC

BGP flapping can cause intermittent packet loss and connectivity issues.

Why this answer

Intermittent packet loss on a Direct Connect virtual interface is most commonly caused by BGP session flapping or misconfiguration, as BGP is the routing protocol that establishes and maintains connectivity between the on-premises router and the AWS Direct Connect endpoint. Checking the BGP session status first allows the engineer to quickly identify if the issue is due to route advertisement problems, hold timer mismatches, or session resets, which are frequent root causes of intermittent packet loss.

Exam trap

The trap here is that candidates often confuse Direct Connect with VPN-based connections and assume a VPN tunnel is involved, leading them to check VPN status (Option D) instead of the BGP session that actually governs the virtual interface routing.

How to eliminate wrong answers

Option A is wrong because the physical port status of the Direct Connect router would show a hard failure (e.g., link down) rather than intermittent packet loss; intermittent issues are rarely caused by physical port problems unless there is a duplex mismatch or cable fault, but these are less likely to be the first check. Option B is wrong because MTU settings on the on-premises firewall typically cause fragmentation or black-hole issues for large packets, not intermittent packet loss across all traffic; MTU mismatches usually result in consistent packet drops for packets exceeding the MTU, not sporadic loss. Option D is wrong because Direct Connect does not use a VPN tunnel; it is a dedicated physical connection, and VPN tunnels are used for AWS Site-to-Site VPN, not Direct Connect virtual interfaces.

94
MCQmedium

An organization has a site-to-site VPN connection between its on-premises network and a cloud VPC. Users report intermittent connectivity to applications hosted in the cloud. The administrator checks the VPN tunnel status and sees it is up. However, ping tests from on-premises to a cloud instance fail at random times. Which factor should the administrator investigate first?

A.The on-premises firewall is blocking outbound ICMP.
B.The security group on the cloud instance is blocking ICMP.
C.The routing tables on the cloud VPC are missing routes for the on-premises network.
D.The VPN tunnel is experiencing packet loss due to a mismatch in the IPSec parameters.
AnswerD

Mismatched IPSec parameters can cause intermittent connectivity despite the tunnel appearing up.

Why this answer

Intermittent connectivity with the VPN tunnel appearing up is a classic sign of packet loss or misconfiguration in IPSec parameters (e.g., mismatched phase 1/phase 2 settings, encryption algorithms, or Diffie-Hellman groups). This causes some packets to fail while others pass, leading to intermittent issues. Option A is incorrect because while the on-premises firewall blocking outbound ICMP could cause ping failures, it would not cause intermittent connectivity for all applications; also, the issue is likely VPN-related.

Option B is incorrect because a security group blocking ICMP would cause consistent ping failure, not intermittent. Option C is incorrect because missing routes would cause complete failure for all traffic, not intermittent.

95
MCQeasy

A company hosts a critical application on a single virtual machine in a public cloud. The virtual machine has been running without issues for months. Recently, the application became unresponsive, and users report a '500 Internal Server Error'. The cloud administrator checks the virtual machine's status and finds it is 'Running'. The administrator can successfully ping the virtual machine's public IP address. The administrator then attempts to SSH into the virtual machine but receives 'Connection timed out'. The virtual machine's security group allows SSH (port 22) from the administrator's IP address. The operating system firewall is enabled and configured to allow SSH. What should the administrator do next to troubleshoot the issue?

A.Use a serial console or out-of-band management to access the virtual machine's console.
B.Reset the virtual machine from the cloud provider's management console.
C.Create a new virtual machine and migrate the application.
D.Check the application logs from the cloud provider's monitoring service.
AnswerA

Serial console access bypasses the network stack and allows the administrator to log in and check the SSH service status or firewall rules.

Why this answer

The administrator can ping the VM (ICMP works) but SSH (TCP/22) times out, indicating the application is running but the SSH service or network stack is not responding to new connections. Since the cloud security group and OS firewall are correctly configured, the issue is likely at the OS level (e.g., SSH daemon crashed, kernel panic, or network service hung). Using a serial console or out-of-band management (e.g., AWS EC2 Serial Console, Azure Serial Console) provides direct, network-independent access to the VM's console, bypassing the broken network stack to diagnose and fix the OS-level problem.

Exam trap

CompTIA often tests the distinction between ICMP reachability (ping) and TCP service availability (SSH), and the trap here is that candidates assume a 'Running' status and successful ping mean the OS is fully functional, overlooking that the network stack or SSH daemon can be broken while the VM appears healthy from the hypervisor's perspective.

How to eliminate wrong answers

Option B is wrong because resetting the VM (power cycle) might temporarily fix the symptom but does not diagnose the root cause, and could cause data loss or downtime without understanding why SSH failed. Option C is wrong because creating a new VM and migrating the application is a drastic, time-consuming recovery action that should only be taken after exhausting troubleshooting steps; it does not help identify the current issue. Option D is wrong because the cloud provider's monitoring service (e.g., CloudWatch, Azure Monitor) typically collects metrics and logs from the guest OS via an agent, but if the OS is unresponsive or the network stack is broken, those logs may not be accessible or up-to-date; the immediate need is to access the console, not check stale logs.

96
MCQeasy

A cloud administrator cannot deploy a new VM from a custom image. The deployment fails with an error stating 'Incompatible hypervisor version'. What is the most likely cause?

A.The image was created on a newer hypervisor than the current host.
B.The VM's virtual hardware version is too old.
C.The image file is corrupt.
D.The storage backend does not support the image format.
AnswerA

Hypervisor backward compatibility may not extend to previous versions.

Why this answer

If the custom image was created on a newer version of the hypervisor, it may include features or configuration that are not supported by the older hypervisor version on the host, causing the 'Incompatible hypervisor version' error. Option B is incorrect because virtual hardware version typically relates to compatibility within the same hypervisor, but the error is specifically about hypervisor version mismatch. Option C is incorrect because a corrupt image would typically cause different errors (e.g., file read failure).

Option D is incorrect because the error is about hypervisor compatibility, not storage backend support.

97
Multi-Selecthard

An organization is migrating workloads to the cloud and after migration, users complain about slow application response times. The administrator reviews the cloud provider's dashboard and sees no resource bottlenecks. Which three factors could still cause poor performance? (Choose three.)

Select 3 answers
A.The application is not optimized for the cloud infrastructure
B.DNS resolution delays due to on-premises DNS server
C.High latency between the cloud region and the users' location
D.Insufficient number of CPU cores in the VM
E.TCP window scaling mismatch
AnswersB, C, E

Slow DNS resolution increases latency without taxing cloud resources.

Why this answer

Correct options are B, C, and E. Option B is correct because DNS resolution delays caused by an on-premises DNS server can increase response times without appearing as a resource bottleneck on the cloud provider's dashboard. Option C is correct because geographic latency between the cloud region and the users' location is a network issue, not a resource bottleneck, so it won't show on the dashboard.

Option E is correct because a TCP window scaling mismatch can degrade network throughput transparently, without affecting resource metrics. Option A is incorrect because an application not optimized for the cloud would typically cause high resource usage, which would appear as a bottleneck on the dashboard. Option D is incorrect because insufficient CPU cores would result in high CPU utilization, visible as a resource bottleneck on the dashboard.

← PreviousPage 2 of 2 · 97 questions total

Ready to test yourself?

Try a timed practice session using only Cloud Troubleshooting questions.