CV0-003 · Question #540
A software development manager is looking for a solution that will allow a team of developers to work in isolated environments that can be spun up and torn down quickly. Which of the following is…
The correct answer is A. Containers. Containers provide lightweight, isolated runtime environments that can be created and destroyed in seconds, making them ideal for developer workflows.
Question
A software development manager is looking for a solution that will allow a team of developers to work in isolated environments that can be spun up and torn down quickly. Which of the following is the MOST appropriate solution?
Options
- AContainers
- BFile subscriptions
- CBallooning
- DSoftware-defined storage
How the community answered
(31 responses)- A87% (27)
- B3% (1)
- C6% (2)
- D3% (1)
Why each option
Containers provide lightweight, isolated runtime environments that can be created and destroyed in seconds, making them ideal for developer workflows.
Containers encapsulate an application and its dependencies into a portable, isolated unit that starts and stops in seconds without the overhead of a full virtual machine. This makes them the preferred solution for giving development teams fast, reproducible, isolated environments that closely mirror production. Each developer can run their own container instance without interfering with others.
File subscriptions are a data delivery or notification mechanism, not a technology for creating isolated compute environments.
Ballooning is a hypervisor memory management technique that dynamically reclaims unused guest VM memory, not a method for provisioning isolated developer environments.
Software-defined storage abstracts underlying storage hardware to enable flexible provisioning, but it does not provide isolated compute environments for development teams.
Concept tested: Containers for isolated developer environments
Source: https://docs.docker.com/guides/docker-concepts/the-basics/what-is-a-container/
Topics
Community Discussion
No community discussion yet for this question.