CompTIA A+ Core 1 220-1201 - Domain 4 Virtualization and Cloud Computing

By Jordan Blake · Updated Jul 10, 2026

Questions20
Passing Score75%
Format100% Multiple Choice
Sessions Logged873
Your progressLog in / Register to track times taken, best score, questions mastered, and coverage on this quiz.
Rating
Community rating 4.1 out of 5 from 21 ratings.
4.1 (21)

Topics covered

This quiz

Uncategorized20 (100%)

Uncategorized20 questions

Discussion

Log in to post a comment, reply, or expand a question.

Q-5560

Question Q-5560 What is the PRIMARY purpose of a VDI (Virtual Desktop…

1 comment · last active Jun 5, 2026

  • SphincterSuprise · Jun 5, 2:30 PM

    Resource pooling + rapid elasticity + measured service — know the NIST cloud characteristics.

Q-5566

Question Q-5566 A company's application experiences 10x traffic during holiday season but…

1 comment · last active May 1, 2026

  • lindsayehlert9 · May 1, 2:20 AM

    Public vs private vs hybrid vs community — community cloud is shared by orgs in same industry (rare on exam but know it).

    +1 votes
Q-5550

Question Q-5550 A developer needs a platform to build and deploy web…

1 comment · last active Mar 9, 2026

  • parisianjedi · Mar 9, 11:42 PM

    PaaS = dev platform without managing OS/runtime. Azure App Service, Elastic Beanstalk — you code, they run the stack.

    +1 votes
Q-5553

Question Q-5553 A technician is setting up a virtual machine on a…

1 comment · last active Mar 6, 2026

  • nomnummy · Mar 6, 6:52 PM

    VMware Workstation on Win11 = Type 2 hosted hypervisor. ESXi on a server = Type 1 bare metal.

    +1 votes
Q-5549

Question Q-5549 A company wants to migrate its email system to a…

1 comment · last active Mar 5, 2026

  • davidg · Mar 5, 7:14 PM

    Vendor-hosted email where you only manage users = SaaS. M365 is the classic example they want.

Q-5563

Question Q-5563 A technician needs to provide network connectivity to virtual machines…

1 comment · last active Mar 3, 2026

  • eliiestarr · Mar 3, 11:29 PM

    Client hypervisor on a tech's laptop for testing = Type 2. Don't pick Type 1 just because it sounds 'more professional'.

Q-5551

Question Q-5551 A company requires complete control over their cloud VMs including…

1 comment · last active Mar 2, 2026

  • IceWalkerLover · Mar 2, 9:58 PM

    IaaS = you patch the VM OS, provider runs the metal. EC2, Azure VMs, GCE.

Q-5556

Question Q-5556 A company wants to ensure that if one of their…

1 comment · last active Mar 2, 2026

  • PyroFromTheMoon · Mar 2, 7:28 PM

    Containers share the host OS kernel — lighter than full VMs. Docker/Kubernetes basics are fair game on A+ now.

Q-5552

Question Q-5552 A hospital wants to keep patient data on-premises for compliance…

1 comment · last active Feb 28, 2026

  • BreatheTheVoodoo · Feb 28, 2:10 PM

    Hybrid = sensitive data stays private, burst/scheduling to public. Not the same as multi-cloud.

Question catalog for this preview

Catalog listing of the 5 preview questions for this quiz.

Question 1

An enterprise is running a VMware vSphere environment. Multiple VMs share the same physical server. One VM begins consuming 95% of the physical CPU resources, causing other VMs to slow significantly. Which VMware feature limits CPU consumption per VM?

Answer choices

  • A. vSphere HA (High Availability)

  • B. CPU resource reservations and limits (vCPU scheduling) (Correct)

  • C. vMotion

  • D. vSAN

Explanation

VMware vSphere allows administrators to set CPU reservations (guaranteed minimum), shares (relative priority), and limits (maximum CPU usage) per VM to prevent any single VM from monopolizing physical host resources.

Question 2

A company uses containers to deploy its microservices application. How do containers differ from traditional virtual machines?

Answer choices

  • A. Containers include a full OS kernel; VMs do not

  • B. Containers share the host OS kernel and are more lightweight; VMs include full OS instances (Correct)

  • C. Containers require a Type 1 hypervisor; VMs require Type 2

  • D. Containers are more secure than VMs due to complete isolation

Explanation

Containers share the host OS kernel and package only the application and its dependencies, making them lightweight and fast to start. VMs include a full OS instance (guest OS), making them more isolated but heavier on resources.

Question 3

A technician needs to provide network connectivity to virtual machines running on a Type 1 hypervisor. Which component provides network switching capabilities within the virtualization platform?

Answer choices

  • A. Physical switch in the datacenter rack

  • B. Virtual switch (vSwitch) (Correct)

  • C. VLAN trunk port

  • D. Software-defined WAN

Explanation

A virtual switch (vSwitch) is a software-based network switch created within the hypervisor. It allows VMs to communicate with each other and with the physical network through the host's physical NICs, providing VLAN support, port groups, and traffic policies.

Question 4

A hospital wants to keep patient data on-premises for compliance while using public cloud resources for non-sensitive workloads like scheduling and HR. What deployment model does this describe?

Answer choices

  • A. Public cloud

  • B. Private cloud

  • C. Community cloud

  • D. Hybrid cloud (Correct)

Explanation

A hybrid cloud combines private cloud/on-premises infrastructure with public cloud resources, allowing data and applications to be shared between them. This enables compliance-sensitive workloads to remain on-premises while leveraging public cloud scalability.

Question 5

A technician is setting up a VM and needs to allocate storage. They configure a 100GB virtual disk but want it to only use actual space as data is written (not pre-allocate the full 100GB immediately). Which disk provisioning type should they choose?

Answer choices

  • A. Thick provisioning

  • B. Thin provisioning (Correct)

  • C. Raw Device Mapping

  • D. VMDK flat file

Explanation

Thin provisioning allocates virtual disk space on-demand as data is actually written, rather than reserving the full capacity upfront. This conserves physical storage. Thick provisioning reserves all space immediately, ensuring performance but consuming storage immediately.