Google News
logo
Docker - Quiz(MCQ)
Which of the following statements is most correct in Docker?
A)
Docker allows you to run and build images.
B)
Docker allows you to run and build containers.
C)
Docker allows you to run containers and build images.
D)
Docker allows you to run images and build containers.

Correct Answer :   Docker allows you to run containers and build images.


Explanation : When a process based on a Docker image is started, it is referred to as a container. In contrast with containers, Docker images are built. And it is the container, which is based on the image, that is run.

Advertisement