...

/

Quiz: Containers

Quiz: Containers

Test your knowledge of Docker containers.

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