Search⌘ K
AI Features

Quiz: Containers

The quiz on containers focuses on assessing knowledge related to Docker's containerization technology. It likely includes questions that test understanding of container concepts, commands, and functionalities within the Docker environment, providing a practical evaluation of the learner's grasp of the material covered in the chapter.

We'll cover the following...
Technical Quiz
1.

Which command will print the Hello world in an interactive Python shell?

A.
docker run python:3.7.9-alpine3.11 python3 
print("Hello world")
B.
docker run -it python:3.7.9-alpine3.11 python3 
print("Hello world")
C.
docker run python:3.7.9-alpine3.11 python3 "Hello world"
D.
docker run -it python:3.7.9-alpine3.11 python3 "Hello world" 

1 / 7