- A
Number of running processes
Why wrong: While many processes could cause CPU/memory pressure, those have already been ruled out; the number of processes alone is not a direct performance metric for slowdown.
- B
Network latency between the application and database servers
High network latency can cause slow response times even if CPU and memory are fine, as the application waits for database queries.
- C
Disk I/O wait time on the hypervisor
High disk I/O wait can cause virtual machines to stall, leading to slow application performance, even if CPU and memory are normal.
- D
Virtual machine snapshot size
Why wrong: Snapshot size primarily affects storage space and backup times, not immediate performance.
- E
Hypervisor version
Why wrong: Hypervisor version is a configuration item, not a real-time performance metric; it is unlikely to cause intermittent slowdown.
Quick Answer
The answer is disk I/O wait time on the hypervisor and network latency between the application and database servers. When CPU and memory utilization appear normal, performance issues often stem from bottlenecks outside the VM itself—specifically, storage contention causing high disk I/O wait, which throttles read/write operations, and network congestion that increases round-trip time for database queries, directly slowing page loads. On the CompTIA Cloud+ CV0-004 exam, this scenario tests your ability to look beyond the obvious metrics and consider shared infrastructure resources in a private cloud; a common trap is assuming the VM’s own CPU or memory is the culprit. Remember the mnemonic “LID” for Latency and I/O Disk—when the processor and RAM look fine, check the link and the storage grind.
CV0-004 Troubleshooting Practice Question
This CV0-004 practice question tests your understanding of troubleshooting. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
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?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
Network latency between the application and database servers
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.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Number of running processes
Why it's wrong here
While many processes could cause CPU/memory pressure, those have already been ruled out; the number of processes alone is not a direct performance metric for slowdown.
- ✓
Network latency between the application and database servers
Why this is correct
High network latency can cause slow response times even if CPU and memory are fine, as the application waits for database queries.
Related concept
Read the scenario before looking for a memorised answer.
- ✓
Disk I/O wait time on the hypervisor
Why this is correct
High disk I/O wait can cause virtual machines to stall, leading to slow application performance, even if CPU and memory are normal.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Virtual machine snapshot size
Why it's wrong here
Snapshot size primarily affects storage space and backup times, not immediate performance.
- ✗
Hypervisor version
Why it's wrong here
Hypervisor version is a configuration item, not a real-time performance metric; it is unlikely to cause intermittent slowdown.
Common exam traps
Common exam trap: answer the scenario, not the keyword
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.
Detailed technical explanation
How to think about this question
Network latency can be measured using tools like `ping` or `traceroute` between the web server and database server; even a few milliseconds of added latency per query can accumulate into seconds of delay for a page with many database calls. Disk I/O wait time (iowait) on the hypervisor reflects the percentage of time the CPU is idle while waiting for disk I/O operations to complete; high iowait often points to oversubscribed storage or misconfigured RAID levels, and can be observed via `iostat` or `top` on the hypervisor host.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A practitioner preparing for the CV0-004 exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
Troubleshooting — study guide chapter
Learn the concepts, then practise the questions
- →
Troubleshooting practice questions
Targeted practice on this topic area only
- →
All CV0-004 questions
499 questions across all exam domains
- →
CompTIA Cloud+ CV0-004 study guide
Full concept coverage aligned to exam objectives
- →
CV0-004 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related CV0-004 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Operations and Support practice questions
Practise CV0-004 questions linked to Operations and Support.
Cloud Architecture and Design practice questions
Practise CV0-004 questions linked to Cloud Architecture and Design.
Security practice questions
Practise CV0-004 questions linked to Security.
Deployment practice questions
Practise CV0-004 questions linked to Deployment.
Troubleshooting practice questions
Practise CV0-004 questions linked to Troubleshooting.
CV0-004 fundamentals practice questions
Practise CV0-004 questions linked to CV0-004 fundamentals.
CV0-004 scenario practice questions
Practise CV0-004 questions linked to CV0-004 scenario.
CV0-004 troubleshooting practice questions
Practise CV0-004 questions linked to CV0-004 troubleshooting.
Practice this exam
Start a free CV0-004 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this CV0-004 question test?
Troubleshooting — This question tests Troubleshooting — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Network latency between the application and database servers — 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.
What should I do if I get this CV0-004 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Last reviewed: Jun 30, 2026
This CV0-004 practice question is part of Courseiva's free CompTIA certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the CV0-004 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.