The CompTIA Cloud+ (CV0-004) validates skills in cloud infrastructure services including deployment, security, networking, and troubleshooting across multi-cloud environments. It is vendor-neutral and covers AWS, Azure, and GCP concepts equally. Download the official CompTIA Cloud+ Exam Objectives for the full domain breakdown.
Cloud+ Practice Quiz
1. The fixed fleet shown below is dropping requests during peak load while wasting capacity overnight. Which NIST cloud characteristic, when properly implemented, would address BOTH the 99% peak saturation and the off-hours waste?
Right answer (C): Rapid elasticity (NIST SP 800-145) provisions and releases capacity automatically based on demand. An auto-scaling group tied to CPU CloudWatch alarms would scale OUT past 12 instances at 13:00 and scale IN to 2-3 overnight, fixing both saturation and waste.
Wrong answers:
- A): Measured service is the metering/billing characteristic that produces the cost column - it reports usage but does not change capacity.
- B): Resource pooling is the multi-tenant abstraction the provider uses internally; it does not adjust your fleet size.
- D): Broad network access means the service is reachable over standard networks and clients - irrelevant to right-sizing capacity.
2. The diagram below shows production app tiers in AWS while the regulated HRIS database and file shares remain on-premises, connected via Direct Connect. Which deployment model BEST describes this architecture?
Right answer (B): Hybrid cloud combines on-premises infrastructure with public cloud, bound together by orchestration or dedicated connectivity (Direct Connect / ExpressRoute / Cloud Interconnect). The diagram is textbook hybrid: regulated data stays on-prem, elastic tiers run in AWS.
Wrong answers:
- A): Public-only would have no on-prem component, but HRIS and file shares are explicitly on-prem.
- C): Community cloud is shared between organizations with similar compliance needs - there is only one tenant here.
- D): Multi-cloud requires two or more public providers (e.g., AWS + Azure); only AWS is shown.
3. The IAM policy below gates access to a sensitive S3 bucket on identity, network location, MFA freshness, and device/session tags - re-validating every request. Which security model does this implementation MOST closely follow?
Right answer (A): Zero Trust ("never trust, always verify") evaluates identity, device, location, and session attributes on every request. The conditions block - MFA presence, MFA age, source IP, and principal tag - is a canonical Zero Trust enforcement point.
Wrong answers:
- B): Perimeter-based security trusts everything inside the boundary; this policy revalidates even from inside 10.0.0.0/16.
- C): Segmentation alone is the SourceIp condition only - this policy adds identity, MFA, and tags.
- D): Implicit allow is the opposite of what this policy does; access is denied unless every condition is met.
4. The Terraform shown below configures an S3 bucket holding regulated audit logs. Which protection does the SSE-KMS configuration provide, and what does it NOT protect against by itself?
Right answer (D): The block configures SSE-KMS with a customer-managed key (CMK), which is encryption at rest. TLS in transit is enforced separately (via bucket policy denying aws:SecureTransport=false), and tokenization/hashing are application-layer concerns.
Wrong answers:
- A): In-transit encryption requires TLS / aws:SecureTransport conditions, which are not in this resource.
- B): Tokenization replaces sensitive values with non-sensitive surrogates and is not what SSE-KMS does.
- C): Object integrity (ETag/MD5/SHA-256) is metadata; SSE encrypts but does not by itself verify integrity.
5. 3 Terraform files like the one shown below define the VPC, subnets, ASG, and ALB for a new environment, version-controlled in Git and applied via CI. Which approach BEST describes this practice?
Right answer (B): IaC defines infrastructure (VPCs, subnets, ASGs, security groups) declaratively in code that is versioned and applied repeatably. Terraform is the canonical IaC tool; CloudFormation, Bicep, and Pulumi are equivalents.
Wrong answers:
- A): Configuration management (Ansible, Chef, Puppet) configures inside existing servers; it does not provision VPCs or ASGs.
- C): CI is the pipeline that runs terraform plan/apply, not the act of defining infrastructure as code.
- D): PaaS is a service consumption model (App Service, App Engine), not a way of writing infrastructure definitions.
6. Acme migrates 80 legacy Windows VMs from VMware to EC2 by exporting OVAs and importing them with the AWS VM Import/Export service - no OS, app, or architecture changes are made. Which migration strategy from the table below applies?
Right answer (A): Rehosting (lift and shift) moves workloads to the cloud with minimal changes - exactly what VM Import/Export of unmodified OVAs accomplishes. It is the fastest path but captures the least cloud-native value.
Wrong answers:
- B): Refactor would mean rewriting the apps to containers, microservices, or serverless - the scenario explicitly says no app changes.
- C): Repurchase replaces the workload with SaaS (e.g., on-prem Exchange to M365); the VMs are still VMs here.
- D): Retire decommissions; nothing is being decommissioned, all 80 VMs are migrated.
7. The architecture shown below must remain available even if AZ-1a is completely lost. Which design property is providing that guarantee?
Right answer (C): Distributing the ASG across three AZs and using Multi-AZ RDS means the loss of AZ-1a removes 1/3 of the app capacity and triggers an automatic RDS failover to the 1b standby - the service stays up.
Wrong answers:
- A): Vertical scaling makes a single instance bigger; if its AZ fails, the instance fails with it.
- B): Same-AZ backups vanish or become unreachable along with the AZ.
- D): Bigger instances do nothing for AZ-level fault tolerance - they share fate with the AZ they run in.
8. The CloudWatch readings below are from a production RDS instance during business hours. Which signals BEST justify scaling the database vertically (or moving to a larger class)?
Right answer (B): Sustained high CPU, latency 10x+ above threshold, and freeable memory near zero are textbook capacity exhaustion - the instance is undersized for the workload and needs more vCPU/RAM (or read replicas to offload reads).
Wrong answers:
- A): Security-group rule count is a configuration metric and does not indicate compute pressure.
- C): IAM user count is governance, not capacity.
- D): DNS lookup time measures Route 53/resolver behavior, not RDS load.
9. Users report intermittent 504 Gateway Timeout errors. Application logs are clean, but the ALB logs and target health shown below tell a clear story. What should be checked FIRST?
Right answer (D): 504 means the LB could not get a response from a backend in time. Two of three targets are unhealthy and the 30-second target_processing_time matches the idle timeout - the issue is at the backend / health-check layer, not the app code.
Wrong answers:
- A): Cert expiration produces 502 / SSL handshake errors, not 504 timeouts.
- B): DNS issues produce NXDOMAIN or no connection - not intermittent timeouts after a successful connection.
- C): App logs are clean and a third instance returns 200 successfully - the code path works.
10. The instance shows "running" with 2/2 status checks passing, but SSH times out. Given the security group rules shown below, what is the MOST likely cause?
Right answer (A): The rule table opens 80, 443, and ICMP, but TCP/22 is missing - so inbound SSH is implicitly denied. Status checks pass because the OS is healthy; only the firewall is the problem. Add an inbound rule allowing TCP/22 from your admin CIDR.
Wrong answers:
- B): A deleted OS would fail the instance status check (1/2), not pass 2/2.
- C): If the region were offline, the EC2 console itself would be inaccessible.
- D): Hypervisor thermal events are extremely rare on managed cloud hardware and would surface as instance retirement or impaired status, not pass 2/2.
Quiz Complete!
0/10Here's how you performed across Cloud+ domains:
Pass CompTIA Cloud+ on your first attempt!!
Get 90+ full-length practice questions, hands-on labs, and PBQs.
Start Practicing NowCloud+ Domain Weights (CV0-004)
Pass CompTIA Cloud+ on Your First Attempt!!
Get complete practice with 90+ questions, hands-on cloud labs, PBQs, and detailed domain breakdowns. An investment worth making!
Free Cloud+ Flashcards
What are the five essential characteristics of cloud computing (per NIST)?
Click to flipOn-demand self-service, broad network access, resource pooling, rapid elasticity, and measured service. Defined in NIST SP 800-145.
Frequently Asked Questions
The Cloud+ (CV0-004) passing score is 750 on a 100-900 scale. The exam includes up to 90 questions with a 90-minute time limit.
Cloud+ is valuable for IT professionals managing multi-cloud environments who need a vendor-neutral credential. It is DoD 8140 approved and validates practical cloud infrastructure skills.
Cloud+ is vendor-neutral covering all major providers, while AWS SAA is AWS-specific. Cloud+ focuses on infrastructure operations, while SAA emphasizes architectural design. Many hold both.
CompTIA recommends 2-3 years of IT experience with system administration and networking knowledge. Hands-on experience with at least one cloud platform is strongly recommended.
The Cloud+ exam voucher costs approximately $369 USD. CompTIA offers bundles with retake vouchers and training materials at a discount.
Yes, Cloud+ includes performance-based questions simulating real scenarios like configuring cloud services, troubleshooting connectivity, or analyzing log output.
Cloud+ is valid for three years. Renewal requires 50 CEUs through CompTIA's Continuing Education program or passing a higher-level CompTIA certification.
Cloud+ qualifies you for cloud engineer, cloud administrator, systems administrator, DevOps engineer, and cloud consultant roles. Salaries range from $75,000 to $110,000.
Cloud+ provides vendor-neutral fundamentals that make vendor-specific certs easier. If you work multi-cloud, start with Cloud+. If single-vendor, a vendor cert may be more practical.
Key tools include Terraform for IaC, Ansible for config management, Docker for containers, Kubernetes for orchestration, and cloud-native monitoring like CloudWatch and Azure Monitor.
Yes, no mandatory prerequisites exist. However, networking fundamentals are essential since cloud infrastructure relies heavily on VPCs, subnets, routing, DNS, and load balancing.
CertLabz offers full-length Cloud+ practice exams with 90+ questions, virtual cloud labs, PBQ simulations, domain breakdowns with progress tracking, and flashcards. Plans start at $10/month.
