Questions for the DCA were updated on : Nov 21 ,2025
Which statement is correct about cluster management in Docker Enterprise Edition 3.x?
B
Two pods bear the same label, app: dev.
Will a label selector matching app: dev match both of these pods?
A
When an application being managed by UCP fails, you would like a summary of all requests made to
the UCP API in the hours leading up to the failure.
What must be configured correctly beforehand for this to be possible?
C
You set up an automatic pruning policy on a DTR repository to prune all images using Apache
licenses.
What effect does this have on images in this repository?
A
Some Docker images take time to build through a Continuous Integration environment. You want to
speed up builds and take advantage of build caching.
Where should the most frequently changed part of a Docker image be placed in a Dockerfile?
C
How do you change the default logging driver for the docker daemon in Linux?
B
What is the difference between the ADD and COPY Dockerfile instructions? (Select two.)
A,E
Are these conditions sufficient for Kubernetes to dynamically provision a persistentVolume,
assuming there are no limitations on the amount and type of available external storage?
Solution: A volume is defined in a pod specification with the key persistentVolume: default.
B
A persistentVolumeClaim (PVC) is created with the specification storageClass: "".and size
requirements that cannot be satisfied by any existing persistentVolume.
Is this an action Kubernetes takes in this situation?
Solution: Kubernetes returns an error indicating that the PVC could not be bound with the current
resources.
A
Will this sequence of steps completely delete an image from disk in the Docker Trusted Registry?
Solution: Manually delete all layers used by the image on the disk from the Docker Trusted Registry.
B
Will a DTR security scan detect this?
Solution: known vulnerabilities or exposures in binaries
A
Will this configuration achieve fault tolerance for managers in a swarm?
Solution: at least seven nodes in total
A
The Kubernetes yaml shown below describes a networkPolicy.
Will the networkPolicy BLOCK this trafftc?
Solution. a request issued from a pod bearing only the tier: frontend label, to a pod bearing the tier:
backend label
A
Explanation:
The provided Kubernetes NetworkPolicy YAML configuration indicates that the policy applies to pods
with the label tier: backend in the default namespace1.The ingress rule allows traffic from pods with
the label tier: api1.Therefore, a request issued from a pod bearing only the tier:frontend label to a
pod bearing the tier: backend label will be blocked by this networkPolicy1.This is because the
networkPolicy does not have a rule allowing ingress from pods with the tier: frontend label1. For
more information on Kubernetes NetworkPolicies, you can refer to theKubernetes Documentation on
Network Policies.
The Kubernetes yaml shown below describes a networkPolicy.
Will the networkPolicy BLOCK this trafftc?
Solution.a request issued from a pod bearing the tier: api label, to a pod bearing the tier: backend
label
B
Explanation:
The provided Kubernetes NetworkPolicy YAML configuration indicates that the policy applies to pods
with the labeltier: backendin thedefaultnamespace1.The ingress rule allows traffic from pods with
the labeltier: api1.Therefore, a request issued from a pod bearing thetier: apilabel to a pod bearing
thetier: backendlabel will not be blocked by this networkPolicy1.This is because the networkPolicy
explicitly allows ingress from pods with thetier: apilabel1. For more information on Kubernetes
Network
Will this configuration achieve fault tolerance for managers in a swarm?
Solution: one manager node for two worker nodes
B
Explanation:
Docker Swarm requires more than one manager node to achieve fault tolerance12.A single manager
node is not fault tolerant because if it goes down, the entire cluster goes down3.For a swarm to be
fault-tolerant, it needs to have an odd number of manager nodes2.For example, a three-manager
swarm tolerates a maximum loss of one manager2.Therefore, a configuration with one manager
node for two worker nodes will not achieve fault tolerance for managers in a swarm12.