DCA Study Guide 2026

Everything you need to pass the DCA exam in one place: the exam format, every topic to study, real practice questions with explanations, flashcards, and full-length practice tests. Free, no sign-up needed.

📋 DCA Exam Format at a Glance

55
Questions
90 min
Time Limit
65.00%
Passing Score

📚 DCA Topics to Study (57)

✍️ Sample DCA Questions & Answers

1. A DevOps lead needs to share networking configuration with a new team member. Which file format does Docker Compose use to define networks?
YAML

Docker Compose uses YAML files (docker-compose.yml) to define services, networks, and volumes.

2. Which command updates the image of a running service named 'api' to use the tag '2.0'?
docker service update --image api:2.0 api

`docker service update --image api:2.0 api` triggers a rolling update of the service's tasks to use the new image.

3. Which log driver is the default for Docker containers when no driver is explicitly configured?
json-file

By default, Docker uses the `json-file` log driver, storing logs as JSON on the host filesystem.

4. When documenting container dependencies for stakeholders, which Docker Compose key explicitly defines startup order communication?
depends_on

`depends_on` defines service startup order and dependency relationships in Docker Compose.

5. You want `docker logs` to follow output in real time, similar to `tail -f`. Which flag do you use?
--follow

`docker logs --follow` (or `-f`) continuously streams new log output as the container produces it.

6. A project architect must ensure containers in different Docker networks cannot communicate unless explicitly allowed. What feature enforces this?
By default, containers on different networks are isolated from each other

Docker network isolation is the default; containers on separate networks cannot communicate unless connected to a shared network.

🎯 Free DCA Practice Tests

📖 DCA Guides & Articles

Your DCA Study Path
1. Learn with Flashcards → 2. Drill Practice Tests → 3. Take the Full Exam Simulation
Was this helpful?