DASA DevOps Professional Practice Exam Questions, Exams of Technology

Practice exam questions for the apmg dasa devops professional certification. It covers key concepts such as the calms model, the three ways of devops, lean principles, westrum model, value stream mapping, ci/cd pipelines, technical debt, infrastructure as code (iac), agile testing quadrants, devsecops, and dora metrics. Each question is followed by the correct answer and a detailed explanation, making it a valuable resource for exam preparation and understanding devops practices. The questions cover a range of topics relevant to devops professionals, including automation, culture, feedback loops, and continuous delivery.

Typology: Exams

2025/2026

Available from 12/26/2025

shilpi-jain-1
shilpi-jain-1 🇮🇳

4.2

(5)

29K documents

1 / 89

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
APMG DASA DevOps Professional Practice
Exam
**Question 1.** Which pillar of the CALMS model focuses on creating a “blameless
postmortem” culture?
A) Automation
B) Measurement
C) Culture
D) Lean
Answer: C
Explanation: Culture emphasizes psychological safety and learning from failure without blame,
enabling blameless postmortems.
**Question 2.** In the Three Ways of DevOps, the “Feedback” principle primarily aims to:
A) Increase the speed of code commits
B) Shorten the time between a change and its impact on the customer
C) Reduce the number of team meetings
D) Automate infrastructure provisioning
Answer: B
Explanation: Feedback focuses on rapid detection of problems and quick learning by shortening
the loop from change to customer impact.
**Question 3.** Which of the following best distinguishes Lean from DevOps?
A) Lean eliminates waste, while DevOps only automates testing.
B) Lean is a set of principles for flow; DevOps adds cultural and tooling practices to enable that
flow.
C) Lean focuses on continuous delivery; DevOps focuses on agile planning.
D) Lean requires no measurement, whereas DevOps relies on metrics.
Answer: B
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe
pff
pf12
pf13
pf14
pf15
pf16
pf17
pf18
pf19
pf1a
pf1b
pf1c
pf1d
pf1e
pf1f
pf20
pf21
pf22
pf23
pf24
pf25
pf26
pf27
pf28
pf29
pf2a
pf2b
pf2c
pf2d
pf2e
pf2f
pf30
pf31
pf32
pf33
pf34
pf35
pf36
pf37
pf38
pf39
pf3a
pf3b
pf3c
pf3d
pf3e
pf3f
pf40
pf41
pf42
pf43
pf44
pf45
pf46
pf47
pf48
pf49
pf4a
pf4b
pf4c
pf4d
pf4e
pf4f
pf50
pf51
pf52
pf53
pf54
pf55
pf56
pf57
pf58
pf59

Partial preview of the text

Download DASA DevOps Professional Practice Exam Questions and more Exams Technology in PDF only on Docsity!

Exam

Question 1. Which pillar of the CALMS model focuses on creating a “blameless post‑mortem” culture? A) Automation B) Measurement C) Culture D) Lean Answer: C Explanation: Culture emphasizes psychological safety and learning from failure without blame, enabling blameless post‑mortems. Question 2. In the Three Ways of DevOps, the “Feedback” principle primarily aims to: A) Increase the speed of code commits B) Shorten the time between a change and its impact on the customer C) Reduce the number of team meetings D) Automate infrastructure provisioning Answer: B Explanation: Feedback focuses on rapid detection of problems and quick learning by shortening the loop from change to customer impact. Question 3. Which of the following best distinguishes Lean from DevOps? A) Lean eliminates waste, while DevOps only automates testing. B) Lean is a set of principles for flow; DevOps adds cultural and tooling practices to enable that flow. C) Lean focuses on continuous delivery; DevOps focuses on agile planning. D) Lean requires no measurement, whereas DevOps relies on metrics. Answer: B

Exam

Explanation: Lean provides the philosophy of waste reduction and flow; DevOps builds on that with cultural change and automation to realize continuous delivery. Question 4. According to the Westrum model, a “generative” organization is characterized by: A) Strict hierarchy and fear of failure B) Low cooperation and high bureaucracy C) High cooperation, shared goals, and learning from failures D) No documentation standards Answer: C Explanation: Generative cultures promote cooperation, shared responsibility, and treat failures as learning opportunities. Question 5. The “You Build It, You Run It” model primarily reduces which anti‑pattern? A) Manual hand‑offs between development and operations B) Excessive test automation C) Frequent code merges D) Over‑documentation of requirements Answer: A Explanation: By giving developers ownership of operations, the model eliminates the siloed hand‑off that causes delays and miscommunication. Question 6. In Value Stream Mapping, the “lead time” metric measures: A) The time a developer spends writing code B) The elapsed time from a customer request to cash receipt C) The duration of a single unit test execution

Exam

C) Executing automated unit tests on every commit D) Manual acceptance testing after each sprint Answer: C Explanation: Automated unit tests on each commit provide immediate feedback on code correctness. Question 10. Continuous Deployment differs from Continuous Delivery in that: A) Continuous Deployment pushes every successful build to production automatically. B) Continuous Delivery requires no automated testing. C) Continuous Deployment does not use version control. D) Continuous Delivery only applies to micro‑services. Answer: A Explanation: Continuous Deployment automates the promotion of every passing build to production, whereas Continuous Delivery leaves the final production push as a manual decision. Question 11. Technical debt that arises from “quick‑and‑dirty” database schema changes is best classified as: A) Architectural debt B) Documentation debt C) Test debt D) Process debt Answer: A Explanation: Architectural debt refers to compromises in the system’s structure, such as ad‑hoc schema changes that affect long‑term maintainability. Question 12. Which strategy integrates debt repayment into sprint planning without sacrificing feature delivery?

Exam

A) Ignoring debt until a major release B) Allocating a fixed percentage of each sprint’s capacity to refactoring C) Adding debt items as low‑priority backlog items only when developers have free time D) Creating a separate “debt sprint” once per year Answer: B Explanation: Reserving a consistent portion of capacity each sprint ensures continuous debt reduction while maintaining feature cadence. Question 13. In a Trunk‑Based Development workflow, the recommended branching strategy is: A) Long‑lived feature branches that merge only at release time B) Short‑lived feature branches that merge to trunk daily C) No branches; all work is done directly on trunk D) Separate branches for each environment (dev, test, prod) Answer: C Explanation: Trunk‑Based Development encourages committing directly to the main line (trunk) to keep integration frequent and avoid merge hell. Question 14. Which artifact repository type is most suitable for storing compiled Java JAR files? A) Docker registry B) Maven repository C) NPM registry D) Helm chart repository Answer: B Explanation: Maven repositories manage Java binaries (JARs, WARs) and their metadata.

Exam

Explanation: Quadrant 2 contains business‑facing tests that support the team, such as functional acceptance tests, and are automated early (shift‑left). Question 18. Load testing is best placed in which Agile Testing Quadrant? A) Quadrant 1 B) Quadrant 2 C) Quadrant 3 D) Quadrant 4 Answer: C Explanation: Quadrant 3 contains technology‑facing tests that critique the product, such as performance and load testing. Question 19. Which practice helps create realistic test data for integration tests? A) Using hard‑coded static values in test scripts B) Copying production data into a sanitized test database C) Manually entering data for each test run D) Skipping data setup to speed up tests Answer: B Explanation: Masked production data provides realistic scenarios while protecting sensitive information. Question 20. A CI/CD pipeline that incorporates security scanning, dependency checks, and container image scanning is an example of: A) DevOps B) DevSecOps C) Continuous Integration only

Exam

D) Agile Manifesto compliance Answer: B Explanation: Adding security activities into the pipeline embodies DevSecOps, integrating security into DevOps workflows. Question 21. Which metric is NOT part of the DORA performance suite? A) Deployment Frequency B) Lead Time for Changes C) Mean Time to Resolve Incidents D) Change Failure Rate Answer: C Explanation: DORA includes Deployment Frequency, Lead Time for Changes, Mean Time to Restore Service, and Change Failure Rate. Mean Time to Resolve Incidents is not a DORA metric. Question 22. A high Change Failure Rate most likely indicates: A) Excellent test coverage B) Frequent production incidents after deployments C) Short lead times for changes D) Low deployment frequency Answer: B Explanation: Change Failure Rate measures the percentage of deployments causing a failure that requires remediation. Question 23. Which business‑value metric would best illustrate the impact of a new checkout feature on revenue? A) Mean Time to Restore Service

Exam

B) An alert on a breached SLO or error‑rate spike C) Daily build completion status D) Number of code commits per developer Answer: B Explanation: Alerts on SLO breaches or error spikes provide actionable signals for developers to investigate. Question 27. Which change‑management model emphasizes creating a “guiding coalition” early in transformation? A) ADKAR B) Kotter’s 8‑Step Process C) Lewin’s Change Model D) McKinsey 7‑S Framework Answer: B Explanation: Kotter’s model includes “forming a powerful guiding coalition” as Step 2. Question 28. When applying ADKAR to DevOps adoption, the “Awareness” component primarily addresses: A) Training developers on new tools B) Communicating why DevOps is needed and the benefits it brings C) Implementing automated pipelines D) Measuring DORA metrics after rollout Answer: B Explanation: ADKAR’s Awareness stage creates understanding of the need for change. Question 29. A common source of resistance to DevOps from a compliance team is:

Exam

A) Fear that automation will reduce auditability B) Desire for more frequent releases C) Preference for cloud‑native architectures D) Interest in open‑source tooling Answer: A Explanation: Compliance teams may worry that automated pipelines obscure traceability; they need assurance that audit trails remain intact. Question 30. Shifting from project‑based budgeting to value‑stream funding primarily enables: A) Longer approval cycles B) Investment in tooling that delivers continuous value rather than one‑off projects C) Reduction of all operational expenses D) Fixed‑price contracts with vendors Answer: B Explanation: Value‑stream funding aligns budget with continuous delivery of value, supporting ongoing automation investments. Question 31. “Compliance as Code” involves: A) Writing compliance policies in natural language only B) Embedding regulatory checks into automated pipelines with version‑controlled code C) Performing manual audits after each release D) Outsourcing compliance to a third‑party auditor Answer: B Explanation: Compliance as Code treats compliance rules as programmable artifacts that run automatically in the pipeline.

Exam

Explanation: Cultural change includes breaking down silos and building shared responsibility, achieved through cross‑training. Question 35. Which of the following is an anti‑pattern in team structure? A) Cross‑functional product teams owning end‑to‑end delivery B) Centralized “Ops” team that manually deploys code written by developers C) “You Build It, You Run It” squads D) Self‑organizing teams with shared backlog Answer: B Explanation: A centralized ops team creates hand‑offs and delays, an anti‑pattern. Question 36. In a value‑stream map, a “process inventory” is used to: A) Record the number of developers in each team B) Capture the amount of work waiting at each stage (queue size) C) List all software licenses owned by the organization D) Document server hardware specifications Answer: B Explanation: Process inventory quantifies work‑in‑process at each step, revealing bottlenecks. Question 37. Which Lean waste is illustrated by “building a feature that no customer uses”? A) Overproduction B) Defects C) Motion D) Transportation Answer: A

Exam

Explanation: Overproduction waste occurs when more is built than needed, such as unused features. Question 38. The “pull” principle in Lean IT encourages: A) Developers pushing code to production as soon as it is written B) Teams only starting work when there is capacity downstream to consume it C) Unlimited parallel work items in the pipeline D) Manual approvals for every change Answer: B Explanation: Pull means downstream demand triggers upstream work, preventing excess WIP. Question 39. Which practice most effectively reduces “batch size” in a delivery pipeline? A) Merging large feature branches once per month B) Deploying small, incremental changes multiple times a day C) Using monolithic architectures D) Performing manual regression testing after each release Answer: B Explanation: Small, frequent releases reduce batch size, lowering risk and improving feedback. Question 40. A “blue‑green deployment” primarily helps with: A) Reducing the number of unit tests required B) Providing a safe way to switch traffic between two identical environments, enabling quick rollback C) Automating database schema migrations without downtime D) Eliminating the need for monitoring Answer: B

Exam

D) UI usability testing Answer: B Explanation: Scanning dependencies for known vulnerabilities ensures unsafe components never reach production. Question 44. In the context of CI/CD, “artifact promotion” refers to: A) Moving a compiled binary from a development repository to a release repository after passing quality gates B) Granting developers administrative rights on the build server C) Increasing the version number of source code D) Automatically deleting old branches after merge Answer: A Explanation: Promotion advances an artifact through environments (dev → test → prod) once it meets defined criteria. Question 45. Which of the following is a leading indicator of a healthy DevOps culture? A) High employee turnover in the operations team B) Frequent post‑mortems that assign blame to individuals C) Teams voluntarily sharing reusable pipeline components across the organization D) Long approval cycles for every change request Answer: C Explanation: Voluntary sharing shows collaboration, learning, and a generative culture. Question 46. The “Mean Time to Restore Service” (MTTR) is most closely related to which DevOps principle? A) Flow

Exam

B) Feedback C) Continuous Learning D) Automation Answer: B Explanation: MTTR reflects how quickly the system recovers after a failure, a key feedback metric. Question 47. Which approach best aligns with “Shift‑Left” testing? A) Performing security scans only in production B) Running unit and integration tests as early as possible in the pipeline, ideally on each commit C) Deferring performance testing until after release D) Conducting manual exploratory testing after a feature is shipped Answer: B Explanation: Shift‑Left moves testing earlier to catch defects sooner. Question 48. In a micro‑services environment, a “service mesh” primarily provides: A) Centralized database management B) Uniform observability, security, and traffic control across services without changing application code C) Legacy monolithic deployment capabilities D) Automated code generation for APIs Answer: B Explanation: Service meshes inject proxies to handle routing, security, and telemetry uniformly. Question 49. Which of the following is a typical sign of “queue buildup” in a CI pipeline? A) Decrease in the number of commits per day

Exam

Question 52. In the context of DevOps, “psychological safety” most directly impacts: A) The speed of automated deployments B) The willingness of team members to raise issues, admit mistakes, and suggest improvements C) The number of servers provisioned in the cloud D) The licensing cost of CI tools Answer: B Explanation: Psychological safety encourages open communication, which is essential for learning and continuous improvement. Question 53. Which of the following statements best describes “continuous learning” in DevOps? A) Only senior engineers receive training on new tools. B) The organization invests in experiments, retrospectives, and knowledge sharing to improve processes over time. C) Learning is limited to formal university degrees. D) Teams avoid changing established workflows to maintain stability. Answer: B Explanation: Continuous learning embraces experimentation, feedback, and shared knowledge to evolve practices. Question 54. Which metric would you monitor to detect a potential “deployment‑pipeline‑bottleneck” caused by long‑running integration tests? A) Number of pull requests opened per day B) Average duration of the integration test stage in the pipeline C) CPU usage on the build server during idle periods D) Number of lines of code changed per commit Answer: B

Exam

Explanation: Long integration test durations directly indicate a bottleneck in the pipeline. Question 55. The primary purpose of a “canary release” is to: A) Deploy the entire application to all users simultaneously B) Roll out a new version to a small subset of users first, monitoring for issues before full rollout C) Replace all existing monitoring tools with a new system D) Eliminate the need for automated testing Answer: B Explanation: Canary releases limit exposure, enabling early detection of problems. Question 56. Which of the following is a key reason to store build artifacts in an immutable repository? A) To allow developers to edit binaries directly in the repository B) To guarantee that every deployment uses the exact same binary version that was tested C) To reduce the need for version control of source code D) To enable automatic deletion of old artifacts after each release Answer: B Explanation: Immutable repositories ensure reproducibility and traceability of deployments. Question 57. In a DevSecOps pipeline, “static application security testing” (SAST) is typically performed: A) After the application is deployed to production B) During the build stage, analyzing source code for vulnerabilities before compilation C) Only on third‑party libraries, not on internal code D) Manually by security analysts after each sprint Answer: B