All Practice Exams

100+ Free OCEB 2 Business Intermediate Practice Questions

Pass your OMG Certified Expert in BPM 2 — Business Intermediate (OCEB 2) exam on the first try — instant access, no signup required.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
Not publicly disclosed Pass Rate
100+ Questions
100% Free
1 / 100
Question 1
Score: 0/0

Which BPMN 2.0 element captures a sequence of message exchanges between two or more Participants WITHOUT modeling the internals of any Participant?

A
B
C
D
to track
2026 Statistics

Key Facts: OCEB 2 Business Intermediate Exam

90

Exam Questions

OMG

59/90

Passing Score (~66%)

OMG

105 min

Exam Duration (English)

OMG (135 min others)

$250

Exam Fee (USD)

OMG

Fund100

Prerequisite

Pass Fundamental first

5 years

Validity

Recertification required

The OMG OCEB 2 Business Intermediate (OMG-OCEB2-BUSINT200) exam has 90 multiple-choice questions in 105 minutes (English) or 135 minutes (other languages) with a 59/90 (~66%) passing score. Topic areas: Business Process Modeling with BPMN (35%) covering all BPMN 2.0 elements except those in the Events Chart exclusions, BPM Knowledge and Skills (20%) covering KPIs, BAM, scorecarding, simulation, BPM ROI, BPM Center of Excellence, organizational change management, Process Quality and Governance Frameworks (15%) covering SOX, COBIT, ITIL, BPMM, Six Sigma, Lean, Intermediate Business Motivation Modeling (10%) including influencers and assessments, Decision Management with DMN (10%) covering decision tables and DMN-BPMN linkage, and Business Rules / SBVR awareness (10%). Prerequisite: pass OCEB 2 Fundamental. Exam fee is $250 USD via Pearson VUE.

Sample OCEB 2 Business Intermediate Practice Questions

Try these sample questions to test your OCEB 2 Business Intermediate exam readiness. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1Which BPMN 2.0 element captures a sequence of message exchanges between two or more Participants WITHOUT modeling the internals of any Participant?
A.Process diagram
B.Choreography diagram
C.Conversation diagram
D.Collaboration diagram
Explanation: A Choreography diagram models the message exchanges between participants — each Choreography Activity (rounded rectangle with two named bands for the participants) shows who initiates and who receives. No Pool internals are shown. Conversation diagrams summarize related Choreographies/Collaborations at a higher level. Collaboration shows Pools with their internal flows. Exam tip: in a Choreography, the Participant in the WHITE band initiates the message.
2In BPMN 2.0, which event type is triggered when an Error is thrown inside a subprocess?
A.Signal
B.Error
C.Compensation
D.Escalation
Explanation: Error events represent abnormal termination conditions. An Error is thrown by an End Event with the error trigger and caught by either a boundary error event on a subprocess or an Error Start Event in an Event Subprocess inside the same scope. Errors are NOT broadcast — they target a specific scope. Exam tip: Error always interrupts; you cannot have a non-interrupting Error boundary event.
3What is the key difference between an Error event and an Escalation event in BPMN 2.0?
A.There is no difference
B.Error always interrupts; Escalation can be interrupting OR non-interrupting and is used to notify higher levels
C.Escalation is for technical exceptions only
D.Error broadcasts to all processes
Explanation: Error denotes abnormal termination — always interrupts, used when the activity cannot continue. Escalation denotes a 'notify upward' situation — can be interrupting OR non-interrupting, used to alert a parent process while the original activity may continue (non-interrupting case). Errors do not broadcast (option 4 is wrong); Signals broadcast. Exam tip: Escalation = let a higher level know; Error = stop, this failed.
4Compensation in BPMN 2.0 is used to model what?
A.Pay rises for employees
B.Undoing the effect of previously COMPLETED work after the process must roll back
C.Recovering from a system crash
D.Adding extra work to a successful path
Explanation: Compensation in BPMN models the semantic 'undo' of completed activities — e.g., a paid invoice must be refunded if a downstream step fails. Each compensable activity declares a Compensation Handler (an activity with the compensation marker) that runs in reverse order when compensation is triggered. Compensation events trigger handlers when the original work has already finished. Exam tip: Compensation operates on COMPLETED work; Error operates on IN-PROGRESS work.
5Which BPMN construct represents 'a subprocess that runs only when a specific event happens inside its parent scope, optionally interrupting the parent'?
A.Embedded subprocess
B.Call Activity
C.Event Subprocess
D.Ad-hoc Subprocess
Explanation: An Event Subprocess sits inside a parent process and is triggered by a single Start Event — that Start Event can be interrupting (solid border, default) or non-interrupting (dashed border). Unlike regular subprocesses, Event Subprocesses have no incoming or outgoing sequence flows. They handle exceptions, compensation, escalation in a structured way. Exam tip: an Event Subprocess is the modern, recommended way to handle events that need their own activity sequence.
6What is the visual difference between an interrupting and a non-interrupting Boundary Event?
A.Boundary events are always interrupting
B.Interrupting boundary events use a solid double border; non-interrupting use a dashed double border
C.Interrupting are red; non-interrupting are green
D.There is no difference
Explanation: Both interrupting and non-interrupting boundary events have the double-circle border (since they are intermediate events) — the differentiator is the line style: SOLID double border = interrupting (cancels the host activity); DASHED double border = non-interrupting (host continues, additional path is taken). Exam tip: this distinction is heavily tested. Non-interrupting is used for 'also do X without stopping the main work'.
7Which Signal event behavior is correct?
A.A thrown Signal goes to a specific named recipient
B.A thrown Signal is broadcast to ALL processes that have a matching catching Signal event
C.Signals only work within a single process
D.Signals can only be caught at start events
Explanation: Signal events are broadcast — when one is thrown, every process instance with a matching catching Signal event receives it. They are useful for global notifications (e.g., 'market closed', 'system maintenance'). Errors target specific scopes; Messages target specific Pools. Exam tip: Signals can be thrown by intermediate or end events and caught by start, intermediate (catching), boundary (interrupting/non-interrupting), or event-subprocess start events.
8The BPMN Complex Gateway is best used when:
A.All other gateway types fit the situation
B.You need a custom routing rule that cannot be expressed by Exclusive, Inclusive, or Parallel gateways
C.You want a parallel split
D.You want to wait for the first event
Explanation: The Complex Gateway is BPMN's escape hatch for routing logic that cannot be expressed by the standard gateways — e.g., 'continue when 2 of 3 incoming branches have arrived'. It carries an activation condition that names the rule. Use sparingly — many BPMN tools and human readers struggle with Complex gateways. Exam tip: BPMN best practice is to avoid Complex if a combination of standard gateways works.
9Which BPMN element is used to indicate 'a reusable process that is invoked from this point and the calling process waits for completion'?
A.Embedded Subprocess
B.Call Activity
C.Ad-hoc Subprocess
D.Event Subprocess
Explanation: A Call Activity (drawn with a thicker border than a regular task/subprocess) invokes a Global Process or Global Task — a reusable definition stored separately. The calling process pauses until the called process completes (synchronous invocation). Embedded subprocesses are inline. Ad-hoc allows unordered execution. Event Subprocesses are event-triggered. Exam tip: Call Activity = reuse + thick border.
10Which BPMN scenario REQUIRES a Conversation diagram instead of a Choreography or Collaboration?
A.When you want to show the highest-level summary of related message exchanges among many participants without detail
B.When you need to show internal sequence flows
C.When you need to model error handling
D.When you want to show a single Pool
Explanation: A Conversation diagram is the highest-level overview — it shows Participants and 'Conversations' (groups of related message exchanges) without showing individual messages or internal flows. It is the executive-summary view of multi-party communication. Collaboration shows messages and (optionally) internal flows. Choreography shows the message sequence. Exam tip: Conversation is the simplest multi-participant diagram, suited for high-level domain maps.

About the OCEB 2 Business Intermediate Exam

The OMG-OCEB2-BUSINT200 exam validates intermediate Business Process Management skills from the business perspective. Builds on Fundamental with advanced BPMN 2.0 (choreography, conversations, error/compensation events, event subprocesses), DMN 1.x decision modeling, SBVR-aware business rules, intermediate BMM, deeper governance frameworks (SOX/COBIT/ITIL/BPMM/Six Sigma/Lean), and BPM management skills (KPIs, BAM, BPM ROI, BPM CoE).

Questions

90 scored questions

Time Limit

105 minutes

Passing Score

59/90 (~66%)

Exam Fee

$250 (OMG (delivered via Pearson VUE))

OCEB 2 Business Intermediate Exam Content Outline

35%

Business Process Modeling with BPMN

All remaining BPMN 2.0.2 elements beyond the Descriptive/Analytic Fundamental scope: choreography diagrams, conversations, complex gateway, event subprocesses, attached (boundary) events, error and compensation events, signal events, global tasks/processes, escalation, execution semantics, diagram interchange. Excluded: Transaction subprocess (ACID semantics), auditing (Sec 10.9), monitoring (Sec 10.10).

20%

BPM Knowledge and Skills

BP project management (activity lifecycle, ownership), measurement and optimization (CSFs, KPIs, Business Activity Monitoring, scorecarding, process simulation, BPM ROI, model value analysis), BPMS tool fundamentals, BPM Center of Excellence (CoE) basics, organizational change management.

15%

Process Quality and Governance Frameworks

Deeper coverage of SOX, COBIT, ITIL, OMG Business Process Maturity Model (BPMM) v1.0, Six Sigma (DMAIC, DMADV, belt structure), and Lean (waste types, value-stream mapping) — especially as they relate to BPM.

10%

Intermediate Business Motivation Modeling

Completing BMM coverage: influencers (internal and external), assessments (impacts on ends and means, SWOT-style analysis), and modeling scenarios that connect BMM elements to BPMN process models.

10%

Decision Management and Modeling with DMN

DMN basic concepts, scope and uses; decision requirements diagrams (DRD); relating decision logic to decision requirements; decision tables (hit policies); the relationship between DMN and BPMN (business rule task linkage).

10%

Business Rules and Shared Business-Wide Vocabulary

Noun concepts and Business Rules vocabulary; BR basics; the two types of business rule (structural / operative); BR and business processes; creating and using process-specific business rules; advantages of a shared business-wide vocabulary (SBVR awareness).

How to Pass the OCEB 2 Business Intermediate Exam

What You Need to Know

  • Passing score: 59/90 (~66%)
  • Exam length: 90 questions
  • Time limit: 105 minutes
  • Exam fee: $250

Keys to Passing

  • Complete 500+ practice questions
  • Score 80%+ consistently before scheduling
  • Focus on highest-weighted sections
  • Use our AI tutor for tough concepts

OCEB 2 Business Intermediate Study Tips from Top Performers

1Master the BPMN Events Chart — know which events (start, intermediate catch, intermediate throw, boundary interrupting, boundary non-interrupting, end) are valid for each event type (timer, message, signal, error, compensation, escalation, conditional)
2Drill error vs. compensation vs. escalation events — they trip up most candidates. Error = abnormal termination, Compensation = undo completed work, Escalation = notify up the chain
3Learn event subprocesses: triggered by an event inside the parent, can be interrupting or non-interrupting, do NOT have explicit incoming sequence flows
4Memorize DMN decision table hit policies: Unique (U), Any (A), Priority (P), First (F), Output Order (O), Rule Order (R), Collect (C+, C<, C>, C#)
5Know the two types of business rule (structural vs. operative) and how SBVR's noun concepts and verb concepts form a shared vocabulary
6Master KPI math: cycle time = wait + processing time; cycle time efficiency = processing / cycle time; little's law (WIP = throughput × cycle time)
7Six Sigma cheat sheet: DMAIC for existing processes, DMADV for new; belt hierarchy White → Yellow → Green → Black → Master Black
8Lean cheat sheet: 8 wastes (TIMWOODS — Transport, Inventory, Motion, Waiting, Overproduction, Overprocessing, Defects, Skills), value-stream map, kaizen, kanban

Frequently Asked Questions

What is the OCEB 2 Business Intermediate exam?

The OMG-OCEB2-BUSINT200 (OMG Certified Expert in BPM 2 — Business Intermediate) is the second tier of OMG's business-track BPM certification. It builds on Fundamental with advanced BPMN 2.0 elements, decision modeling with DMN, business rules and SBVR awareness, intermediate BMM, deeper governance frameworks, and the practical BPM management skills (KPIs, BAM, BPM CoE) needed to lead BPM projects.

What are the prerequisites?

You must hold a valid passing score on the OCEB 2 Fundamental exam (OMG-OCEB2-FUND100). The Business Intermediate exam assumes fluency with the Descriptive and Analytic BPMN subclasses and the BMM elements covered at the Fundamental level.

How many questions and how long is the exam?

90 multiple-choice questions. Candidates in English-speaking countries have 105 minutes; candidates in other countries have 135 minutes. Many questions present BPMN diagrams or short scenarios. The passing score is 59 out of 90 (~66%).

How much does the exam cost?

The OMG-OCEB2-BUSINT200 fee is US$250 in English-speaking countries (US$260 in others) per OMG's published exam overview, though some providers list bundled prices up to US$350. Retake fee is approximately US$175. The exam is delivered through Pearson VUE.

What is the largest topic area?

Business Process Modeling with BPMN at 35% — by far the largest section. Expect detailed BPMN 2.0 questions on advanced events (error, compensation, signal, escalation), event subprocesses, choreography diagrams, conversations, complex gateway, and execution semantics. Master the BPMN Events Chart exclusions before the exam.

How does DMN appear on the exam?

DMN content is 10% of the exam and focuses on decision requirements diagrams (DRD), decision tables (including hit policies like Unique, Any, First, Priority), and how DMN integrates with BPMN through the Business Rule Task. You do not need full FEEL expression fluency at this level.

What does the BPM Knowledge and Skills section cover?

It covers practical BPM execution: defining KPIs and CSFs, Business Activity Monitoring (BAM), scorecarding (Balanced Scorecard application), process simulation and optimization, calculating BPM ROI, BPMS tool fundamentals, establishing a BPM Center of Excellence, and Organizational Change Management. This is 20% of the exam.

How should I prepare?

Plan 6-10 weeks of study after passing Fundamental. Focus on the BPMN 2.0.2 specification chapters and Events Chart, read the OCEB 2 Business Intermediate guide (Negri/Brülhart/Schiltz) and Real-Life BPMN (Freund & Rucker), and drill the DMN basics. Practice 100+ questions and target 75%+ on timed mocks.