nerdexam
Broadcom-VMware

1V0-71.21 · Question #6

What is the purpose of a container?

The correct answer is D. Allow a complex application to run as a single unit. Heads up: the provided answer key appears to contain an error. Option B is the standard, textbook-correct answer for this question. Containers exist specifically to abstract a running application from the environment it runs on - they bundle an app with all its dependencies so…

Explain Container and Kubernetes Concepts

Question

What is the purpose of a container?

Options

  • AMake it difficult to change the environment that an application runs on
  • BAbstract a running application from the environment that it runs on
  • CMake it easy to change the runtime that an application uses
  • DAllow a complex application to run as a single unit

How the community answered

(67 responses)
  • A
    1% (1)
  • B
    6% (4)
  • C
    1% (1)
  • D
    91% (61)

Explanation

Heads up: the provided answer key appears to contain an error. Option B is the standard, textbook-correct answer for this question.

Containers exist specifically to abstract a running application from the environment it runs on - they bundle an app with all its dependencies so it behaves identically whether running on a developer's laptop, a test server, or production. This is their defining purpose (and the core value proposition of tools like Docker).

Why the distractors are wrong:

  • A is the opposite of reality - containers make environments easier to change, not harder.
  • C is partially true (containers do simplify runtime portability), but it describes a benefit rather than the core purpose, and it's less precise than B.
  • D describes a monolithic application or possibly a Kubernetes Pod - the idea of grouping services into one unit. Containers actually enable the opposite pattern: breaking complex apps into smaller, isolated units (microservices).

Memory tip: Think of a container as a shipping container analogy - the whole point is that the same container loads onto any ship, truck, or train without caring about the vehicle. The abstraction from the underlying transport is the point, which maps directly to option B.

Recommendation: Double-check your exam's answer key or course materials. If this is from a specific vendor certification, their curriculum may define containers unusually - but in any standard exam (CompTIA, AWS, Google Cloud, etc.), B is the accepted answer.

Topics

#containers#application packaging#containerization#deployment unit

Community Discussion

No community discussion yet for this question.

Full 1V0-71.21 Practice