Skip to content

Quiz: Business Process Management

Test your understanding of how IS organizations model, redesign, automate, and continuously improve business processes.


1. What is the purpose of process modeling?

  1. To replace operational systems with diagrams
  2. To produce a formal artifact that creates shared understanding, surfaces defects, and prepares the process for automation
  3. To document every conceivable variation a process could ever have
  4. To prevent business analysts from talking with developers
Show Answer

The correct answer is B. Process modeling buys an organization three things at once: shared understanding (people who run pieces of a process discover they disagreed about how it works), defect surfacing (latent problems become visible), and automation readiness (a clean model is the first step toward instrumentation). The model is not the process itself — it is the artifact the team can argue about, share, and act on.

Concept Tested: Process Modeling


2. In BPMN notation, what does a swimlane (within a pool) represent?

  1. A specific date or time the activity must happen
  2. The cost of an activity in dollars
  3. A particular role, team, or department responsible for the activities drawn within it
  4. A type of database query
Show Answer

The correct answer is C. A pool represents one participant (organization or system); lanes within a pool subdivide responsibility further by role, team, or department. The pedagogical superpower of swimlanes is that they make handoffs visible — every lane crossing is a place where work changes hands, which is where processes most often break, slow, or lose information.

Concept Tested: Pool and Lane


3. Which BPMN gateway is used when exactly one of several outgoing paths should be taken based on a condition?

  1. Parallel (AND) gateway
  2. Inclusive (OR) gateway
  3. Event-based gateway
  4. Exclusive (XOR) gateway
Show Answer

The correct answer is D. An exclusive (XOR) gateway selects exactly one outgoing path based on a condition — for example, "Is the order over $10,000?" leading to either manager review or auto-approval. Parallel gateways take all paths simultaneously; inclusive gateways take one or more; event-based gateways select the path based on which event happens first.

Concept Tested: Gateway


4. The "As-Is" process diagram represents:

  1. The aspirational target state after improvement
  2. The process as it actually runs today, including workarounds and undocumented steps
  3. A regulatory document required by ABET
  4. A vendor's reference architecture for a process
Show Answer

The correct answer is B. The As-Is process captures the process as it actually runs in the field — workarounds, undocumented shortcuts, vestigial approvals, and all. It is humbling to draw because the team typically discovers steps no one had documented. The To-Be is the target state. Drawing both is the standard discipline before any improvement project.

Concept Tested: As-Is Process


5. Michael Hammer's central insight about process reengineering is best captured by:

  1. "Always start with technology and work backward to the process"
  2. "Don't automate, obliterate" — the worst thing you can do with a broken process is automate it
  3. "Six Sigma is always preferable to Lean for office work"
  4. "Most processes don't need to change; only the people running them"
Show Answer

The correct answer is B. Hammer's 1990 article argued that automating a bad process produces a bad process running more efficiently — which is, on a long enough timeline, worse than the original. Reengineering asks the deeper question: if we were starting fresh today, would we even design this process? Sometimes the right answer is to obliterate steps rather than streamline them.

Concept Tested: Process Reengineering


6. The Lean mnemonic DOWNTIME refers to:

  1. The eight categories of waste Lean seeks to eliminate
  2. The hours each day a system is unavailable
  3. The phases of the DMAIC improvement cycle
  4. The duration of a sprint retrospective
Show Answer

The correct answer is A. DOWNTIME stands for the eight Lean wastes: Defects, Overproduction, Waiting, Non-utilized talent, Transportation, Inventory, Motion, Extra processing. The mnemonic is the standard memory aid; if you can recall it, you can spot waste in nearly any process. DMAIC is Six Sigma's improvement cycle, not Lean's waste catalog.

Concept Tested: Lean Methodology


7. A bank wants to apply DMAIC to reduce variation in its loan-approval cycle time. After completing the Define, Measure, and Analyze phases, what should the next phase do?

  1. Audit the books for fraud
  2. Restart the project from scratch
  3. Hand the process over to legal for review
  4. Improve — design and pilot the change, validate it against the baseline
Show Answer

The correct answer is D. DMAIC is Define, Measure, Analyze, Improve, Control. After identifying root causes in Analyze, the team designs and pilots improvements in the Improve phase, validates them against the baseline established in Measure, then institutionalizes the gains in Control. Restarting or handing off to legal would skip the actual improvement work the methodology is built to deliver.

Concept Tested: DMAIC


8. A team needs to automate work between a 30-year-old mainframe with no API and a vendor portal with no API on a tight deadline. Which approach is most appropriate, and what is the key tradeoff?

  1. RPA — fast to deploy across non-integrate-able systems, but bots can break silently when UIs change
  2. Workflow automation via a BPMN engine that requires APIs from both systems
  3. A custom monolithic application replacing both systems within a sprint
  4. Doing nothing, since the systems were never meant to talk
Show Answer

The correct answer is A. RPA is designed for exactly this situation — automating across systems that were never meant to be integrated, by mimicking human users at the UI level. The tradeoff is brittleness: any UI change in either system can break the bot silently. RPA is a tactical bridge, not a strategic foundation. Workflow automation requires APIs the team does not have; rebuilding both systems in a sprint is unrealistic.

Concept Tested: Robotic Process Automation


9. Process mining differs from traditional analyst-built process models in that it:

  1. Replaces all process diagrams with text descriptions
  2. Eliminates the need for any modeling whatsoever
  3. Reconstructs the actual as-is process from event logs in enterprise systems, replacing analyst opinion with measurement
  4. Is only applicable to manufacturing, not office work
Show Answer

The correct answer is C. Process mining (Celonis, UiPath Process Mining, IBM, Microsoft) ingests event logs — case ID, activity, timestamp — and automatically reconstructs the process as it actually runs, including all variants, exceptions, and rework loops. Where the analyst-built as-is is an opinion, the mined as-is is a measurement. When the two disagree, the data wins.

Concept Tested: Process Mining


10. A bank externalizes its credit-approval logic from application code into a business rules engine using DMN decision tables. Analyzing this design choice, which is the most accurate description of the tradeoff?

  1. The rules engine adds latency, but it makes the application code shorter
  2. The rules engine eliminates the need for any IT involvement in changes
  3. Policy changes become configuration changes editable by analysts, but the rule set itself becomes a software artifact that needs version control, peer review, and tests
  4. The rules engine is purely cosmetic and provides no real benefit
Show Answer

The correct answer is C. Externalizing rules turns policy changes (a new tax rate, a new threshold) into configuration changes rather than code releases — a real strategic win. But the rule set quickly becomes a software artifact in disguise; thousands of rules can become unmaintainable without engineering rigor. The structural fix is to apply version control, peer review, automated tests, and staged rollout to the rule set, even when the editors are non-developers.

Concept Tested: Business Rules Engine