Skip to content

CompTIA Cloud+ (CV0-004) - Practice Questions

15 questions for Cloud+ prep across cloud architecture, deployment, operations, security, and troubleshooting.

Cloud+ is vendor-neutral, so answers describe concepts rather than a specific provider's service names.

Cert page: exams/comptia/cloud-plus/


Question 1

Scenario: A workload has a predictable baseline plus unpredictable spikes.

A. Provision for the peak permanently B. Provision the baseline with a committed discount and handle spikes with autoscaling on demand C. Provision the average D. Provision the minimum

Answer **Correct: B** **Why:** Splitting baseline from burst captures the discount on predictable usage while keeping elasticity for peaks. Provisioning for the average is the worst option: it fails during every spike while still paying for idle capacity off-peak.

Question 2

Scenario: A migration approach must be chosen for a legacy application.

A. Always refactor B. Assess per application: rehost, replatform, refactor, repurchase, retire, or retain C. Always rehost D. Always retire

Answer **Correct: B** **Why:** The six R's are a per-application decision driven by business value, technical debt, and remaining lifespan. Rehosting everything carries the debt into a more expensive place; refactoring everything is the most expensive default.

Question 3

Scenario: A VM template must be produced so every instance starts identically.

A. Configure each instance by hand B. A golden image built by an automated pipeline, versioned and rebuilt on a patching cadence C. A documentation page D. Copy an existing instance manually

Answer **Correct: B** **Why:** Images built by a pipeline are reproducible and auditable; manual builds embed whatever was on the machine that day. The operational detail people miss is the rebuild cadence: in an immutable model, the pipeline is how patching happens.

Question 4

Scenario: Storage must be shared by many instances with file semantics.

A. Block storage B. File storage (NFS or SMB) C. Object storage D. Local ephemeral disk

Answer **Correct: B** **Why:** Block attaches to one instance like a disk, file provides concurrent POSIX or SMB access, and object is API-accessed with no file semantics. Matching the storage type to the access pattern is a recurring Cloud+ question shape.

Question 5

Scenario: Data must survive the loss of a whole availability zone.

A. RAID within one zone B. Replication across zones or regions, plus backups tested by restore C. Snapshots in the same zone D. A larger disk

Answer **Correct: B** **Why:** RAID and same-zone snapshots protect against device failure, not zone failure. The other half is the restore test: a backup that has never been restored is an assumption, and its failures surface during the incident.

Question 6

Scenario: Costs are rising and the cause is unclear.

A. Reduce all resources B. Tag resources consistently, analyze cost by tag and service, then act on the largest contributors and set budget alerts C. Cancel unused accounts D. Estimate from headcount

Answer **Correct: B** **Why:** Attribution before action, because cost is normally concentrated in a few resources. Tag enforcement at creation matters, since coverage decays otherwise and untagged spend becomes invisible to the analysis.

Question 7

Scenario: An application tier must not be reachable from the internet.

A. A private subnet with no route to an internet gateway, using NAT for outbound only B. A firewall rule on the instance C. A strong password D. A public IP with an allowlist

Answer **Correct: A** **Why:** Routing is the structural control and security groups are the filter on top. NAT permits outbound-initiated traffic while blocking inbound. An allowlisted public IP is still internet-reachable and depends on the list staying correct.

Question 8

Scenario: Identity and access must follow least privilege across teams.

A. One shared administrator account B. Role-based access with groups, per-service scoping, MFA on privileged accounts, and periodic access review C. Individual permissions per user D. Full access with logging

Answer **Correct: B** **Why:** Groups make joiners and leavers a membership change rather than a permission audit. Shared accounts destroy attribution, which is the first thing an incident investigation needs. Access review is what catches privilege creep.

Question 9

Scenario: Encryption keys must be under organizational control.

A. Provider-managed keys only B. Customer-managed keys in a key management service, with rotation, access policy, and audit logging C. No encryption D. Keys in application configuration

Answer **Correct: B** **Why:** Customer-managed keys give revocation and an audit trail, which is usually what the compliance requirement actually means. Keys in configuration files are the anti-pattern: they leak through repositories, images, and backups.

Question 10

Scenario: Capacity planning for a growing service.

A. React when it breaks B. Trend historical utilization, model growth, load test to find the real limit, and account for lead times on anything that cannot be added instantly C. Over-provision heavily D. Rely entirely on autoscaling

Answer **Correct: B** **Why:** Autoscaling handles variation within a provisioned envelope but not quota ceilings, license limits, or a dependency that cannot scale. Knowing the measured breaking point, rather than the extrapolated one, is what makes the plan credible.

Question 11

Scenario: A deployment must be reversible if it goes wrong.

A. Deploy and hope B. A strategy with a rollback path: blue-green, canary, or rolling with health-gated progression C. Deploy at night D. Notify users first

Answer **Correct: B** **Why:** Blue-green swaps whole environments so rollback is a traffic switch; canary exposes a small share first; rolling replaces gradually. All three require health checks that actually detect failure, or the automation happily rolls out a broken version.

Question 12

Scenario: An instance is unreachable and the cause is unknown.

A. Rebuild it B. Work the layers: check instance state and console output, then routing, then network ACLs and security groups, then the host firewall and the application C. Restart the network D. Contact the provider first

Answer **Correct: B** **Why:** Systematic layer-by-layer isolation is the Cloud+ troubleshooting method, and it is faster than guessing because each step eliminates a category. Rebuilding destroys the evidence and often recreates the same misconfiguration.

Question 13

Scenario: Monitoring must detect problems before users do.

A. Check dashboards daily B. Metrics with alerting on user-affecting symptoms, log aggregation, synthetic checks from outside, and a defined escalation path C. Log everything with no alerts D. Alert on every metric

Answer **Correct: B** **Why:** Alerting on symptoms rather than causes is what keeps pages actionable; alerting on every metric produces fatigue and missed real incidents. Synthetic checks give the outside-in view that internal metrics cannot.

Question 14

Scenario: A compliance requirement mandates data stay within a country.

A. Encrypt the data B. Select in-region services and restrict replication, backup, and disaster recovery targets to that jurisdiction, then verify support access C. Add a policy document D. Use a CDN

Answer **Correct: B** **Why:** Residency leaks through the paths nobody chose deliberately: cross-region backups, DR replicas, and telemetry. Verifying each is what turns a residency claim into something defensible.

Question 15

Scenario: Infrastructure must be reproducible across environments.

A. Runbooks with console steps B. Infrastructure as code in version control, applied through a pipeline, with environment-specific parameters C. Screenshots D. A configuration spreadsheet

Answer **Correct: B** **Why:** IaC gives review, history, and rollback for infrastructure, and it is the precondition for any credible disaster recovery plan, because the second region must be buildable. Console-driven environments drift and cannot be verified.

Where to go deeper