CERTIFIED-MACHINE-LEARNING-PROFESSIONAL · Question #14
CERTIFIED-MACHINE-LEARNING-PROFESSIONAL Question #14: Real Exam Question with Answer & Explanation
The correct answer is A: Cloud-based compute. Note: There appears to be an error in the provided answer key. The correct answer is D. Containers, not A. --- Containers (e.g., Docker) are purpose-built to bundle an application together with all its dependencies - libraries, runtime tools, configuration files - into a single p
Question
Which of the following tools can assist in real-time deployments by packaging software with its own application, tools, and libraries?
Options
- ACloud-based compute
- BNone of these tools
- CREST APIs
- DContainers
- EAutoscaling clusters
Explanation
Note: There appears to be an error in the provided answer key. The correct answer is D. Containers, not A.
Containers (e.g., Docker) are purpose-built to bundle an application together with all its dependencies - libraries, runtime tools, configuration files - into a single portable unit. This self-contained packaging is exactly what enables consistent, real-time deployments across any environment without "works on my machine" issues.
Why the distractors are wrong:
- A. Cloud-based compute - Provides raw computing infrastructure (VMs, servers) but does not inherently package software with its libraries and tools. It's the platform containers run on, not the packaging mechanism itself.
- B. None of these tools - Incorrect, since containers directly fulfill the described purpose.
- C. REST APIs - A communication protocol/architectural style for services to talk to each other; has nothing to do with packaging software for deployment.
- E. Autoscaling clusters - A resource management strategy that dynamically adjusts the number of running instances; it manages how many things run, not how they are packaged.
Memory tip: Think of a container like a shipping container - it holds everything needed (the app + its tools + libraries) in one sealed box that can be loaded onto any ship (any host system) and deployed consistently.
Community Discussion
No community discussion yet for this question.