All Practice Exams

100+ Free Wirtschaftsinformatiker FA Practice Questions

Prepare for the Wirtschaftsinformatiker / Wirtschaftsinformatikerin mit eidgenössischem Fachausweis exam with instant access — no signup required.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
100+ Questions
100% Free

Loading practice questions...

2026 Statistics

Key Facts: Wirtschaftsinformatiker FA Exam

NQF 6

Swiss Qualification Level

ICT-Berufsbildung Schweiz (NQR level 6, bachelor-level equivalence)

Grade 4.0

Minimum Passing Grade

ICT-Berufsbildung Schweiz (Scale 1-6)

CHF 3,000

Federal Exam Fee

ICT-Berufsbildung Schweiz, published examination fee

50%

Federal Tuition Subsidy

SBFI Bundesbeiträge (Up to CHF 9,500)

3 parts

Projektarbeit, written exam, oral exam

Prüfungsausschreibung Wirtschaftsinformatik

100

Practice Questions

OpenExamPrep

The Swiss Federal Diploma in Business Informatics (Wirtschaftsinformatiker FA) is a tertiary qualification placed at NQF level 6 (bachelor-level equivalence). Administered by ICT-Berufsbildung Schweiz under SBFI oversight, it tests four core competency domains: Business Process Management & Requirements Engineering, IT Project Management (HERMES / Agile), Enterprise Architecture & Strategy, and IT Controlling, Governance & Swiss Compliance.

Sample Wirtschaftsinformatiker FA Practice Questions

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

1In BPMN 2.0 (Business Process Model and Notation), what is the fundamental behavioral difference between an Exclusive Gateway (XOR) and a Parallel Gateway (AND)?
A.An Exclusive Gateway evaluates conditions on outgoing sequence flows and routes the process token down exactly ONE matching path; a Parallel Gateway activates ALL outgoing sequence flows simultaneously without evaluating conditions
B.An Exclusive Gateway activates all paths simultaneously, while a Parallel Gateway chooses only one
C.An Exclusive Gateway is only used for sending emails, while a Parallel Gateway is for database writes
D.A Parallel Gateway requires an external human approval before continuing
Explanation: In BPMN 2.0: An Exclusive Gateway (XOR, marker 'X' or blank diamond) represents a mutually exclusive decision point where exactly one outgoing sequence flow is followed based on condition evaluation. A Parallel Gateway (AND, marker '+') creates concurrent execution paths, splitting execution to all outgoing branches unconditionally.
2In BPMN 2.0 process modeling, what is an Intermediate Boundary Event attached to the border of an Activity, and what is the difference between an Interrupting and Non-Interrupting boundary event?
A.An Interrupting boundary event (solid double circle) immediately cancels and terminates the active activity when triggered; a Non-Interrupting boundary event (dashed double circle) spawns a parallel execution path while the original activity continues running
B.An Interrupting boundary event changes the font color of the diagram, while a Non-Interrupting event deletes the activity
C.Interrupting events are only used in software code, while Non-Interrupting events are for human tasks
D.A Non-Interrupting boundary event requires the entire process instance to restart from the beginning
Explanation: Boundary events catch triggers (e.g., Timer, Message, Error) while an activity is executing. Solid-line interrupting events abort the parent activity (e.g., a 24-hour timeout canceling an order). Dashed-line non-interrupting events execute an auxiliary flow (e.g., sending a reminder email) without interrupting or canceling the ongoing task.
3According to the IREB (International Requirements Engineering Board) standard, what is the classification difference between Functional Requirements and Non-Functional Requirements (Quality Requirements)?
A.Functional Requirements specify WHAT behavior, functions, and data transformations the system must execute; Non-Functional Requirements (ISO/IEC 25010) specify HOW WELL the system must perform (performance, security, usability, reliability, maintainability)
B.Functional Requirements describe UI button colors, while Non-Functional Requirements describe database SQL queries
C.Non-Functional Requirements are optional suggestions that developers can ignore
D.Functional Requirements can only be written in Python code
Explanation: In IREB requirements engineering: Functional requirements define services, capabilities, and business rules (e.g., 'The system must calculate Swiss VAT at 8.1%'). Non-functional quality requirements define constraints and quality attributes (e.g., 'The system must process 1,000 transactions per second with response time $< 200\text{ ms}$ under ISO 25010').
4In agile requirements engineering, what does the INVEST mnemonic (Bill Wake) define for high-quality User Stories?
A.Independent (can be developed separately), Negotiable (details can be discussed), Valuable (delivers clear customer value), Estimable (can be sized), Small (fits within a single sprint), Testable (has verifiable acceptance criteria)
B.Integrated, Networked, Virtual, Encrypted, Standardized, Tracked
C.Infrastructure, Node, Version, Execution, Server, Testing
D.Important, Non-blocking, Verified, Enterprise, Scalable, Tested
Explanation: The INVEST criteria guide Product Owners and Business Analysts in writing well-formed user stories: Independent (no tight coupling between stories), Negotiable (not a rigid contract), Valuable (delivers value to user), Estimable (team can understand scope), Small (sized for 1 sprint), and Testable (clear Given-When-Then acceptance criteria).
5In Business Process Management and Lean Six Sigma, what is the core difference between Process Throughput Time (Durchlaufzeit) and Processing Time (Bearbeitungszeit / Touch Time)?
A.Processing Time is the actual active time spent working on a task; Throughput Time is the total elapsed calendar time from start to completion, including waiting times, queue delays, transport times, and idle storage
B.Throughput Time is always shorter than Processing Time
C.Processing Time measures server CPU speed, while Throughput Time measures internet bandwidth
D.There is no difference; both terms are exact synonyms
Explanation: Throughput Time (Cycle Time / Durchlaufzeit) represents the complete duration a business object takes to move through a process. In unoptimized processes, Processing Time (actual value-add work) often accounts for only $5\%$ of total Throughput Time, while $95\%$ is wasted in queues and wait states (Liegezeit). Process Cycle Efficiency = $\text{Processing Time} / \text{Throughput Time}$.
6In Lean Management, which category of process waste (Muda) is addressed when an organization automates data transfer between its CRM and ERP systems, eliminating the need for employees to manually copy-paste customer orders?
A.Overprocessing / Inappropriate Processing (Überbearbeitung) and Defects (Fehler/Nacharbeit)
B.Motion (Bewegung)
C.Transportation of physical materials
D.Overproduction of physical goods
Explanation: Manual duplicate data entry and copy-pasting across disparate IT systems is a classic example of Overprocessing (performing unnecessary administrative effort that adds zero customer value) and inevitably introduces human data entry errors (Defects / Nacharbeit). Integration eliminates this waste.
7In UML Use Case modeling, what is the semantic difference between an `<<include>>` relationship and an `<<extend>>` relationship between two use cases?
A.An `<<include>>` relationship indicates that the base use case unconditionally and mandatory executes the included use case as part of its normal flow; an `<<extend>>` relationship indicates an optional behavior that executes only when specific extension point conditions are met
B.An `<<extend>>` relationship is mandatory, while `<<include>>` is optional
C.An `<<include>>` relationship can only be used with database tables
D.There is no difference; both are interchangeable stereotypes in UML
Explanation: In UML: `<<include>>` represents mandatory decomposition (e.g., 'Checkout' *includes* 'Validate Payment'—it cannot complete without it). `<<extend>>` represents optional or conditional branching (e.g., 'Apply Promotional Coupon' *extends* 'Checkout' only if the customer enters a valid discount code at an extension point).
8Which phase model does the Swiss federal project management standard HERMES 2022 define?
A.Five phases with the classic approach — Initialisierung, Konzept, Realisierung, Einführung, Abschluss — or three phases with the agile approach, where Konzept/Realisierung/Einführung are replaced by a single Umsetzung phase
B.Exactly four phases in every case: Initialisierung, Konzept, Realisierung, Einführung
C.Planning, Coding, Testing, Maintenance
D.Strategy, Architecture, Operation, Decommissioning
Explanation: HERMES 2022 introduced the phase Abschluss and the choice between a classic and an agile route. A project always begins with Initialisierung and always ends with Abschluss, which organises and administratively completes the handover from the project organisation to the application organisation. In between, the classic route runs Konzept, Realisierung and Einführung, while the agile route replaces those three with one Umsetzung phase — so projects run in five or in three phases.
9In the HERMES 2022 governance model, who holds ultimate responsibility for project success, financing, and business value realization, and chairs the Project Steering Committee (Projektsteuerung)?
A.Der Auftraggeber (Project Sponsor / Client)
B.Der Projektleiter (Project Manager)
C.Der Scrum Master
D.Der Software-Entwickler (Software Developer)
Explanation: In HERMES 2022, the Auftraggeber (Project Sponsor) owns the project: they secure funding, approve the business case and project charter, release phases, chair the steering committee, and bear ultimate responsibility for business outcomes. The Projektleiter manages day-to-day project execution on behalf of the Auftraggeber.
10In HERMES 2022, what is the mandatory decision milestone that concludes the 'Initialisierung' (Initialization) phase before significant project funds are released for concept work?
A.The Auftraggeber's Phasenfreigabe decision — releasing the next phase on the basis of the approved Projektauftrag, business case and protection needs analysis
B.Entscheid Software-Release
C.Entscheid Projektabschluss
D.Entscheid Systemabnahme
Explanation: In HERMES the milestones act as quality gates at the phase boundaries. The Initialisierung phase closes with the Auftraggeber's Phasenfreigabe: on the basis of the Projektauftrag, the business case and the protection needs analysis (Schutzbedarfsanalyse) the Auftraggeber decides whether the project is released and the next phase may start. The Auftraggeber makes the steering decision; specialist decisions such as approving the architecture are taken by the responsible specialists.

About the Wirtschaftsinformatiker FA Exam

The Wirtschaftsinformatiker / Wirtschaftsinformatikerin mit eidgenössischem Fachausweis (Swiss Federal Diploma of Higher VET in Business Informatics / Informaticien de gestion avec brevet fédéral) is Switzerland's benchmark professional credential for business analysts, IT project managers, process consultants, and enterprise solutions architects bridging business strategy and information technology. Governed by the Prüfungsordnung and Wegleitung issued by ICT-Berufsbildung Schweiz under SBFI oversight and placed at level 6 of the Swiss National Qualifications Framework, which the association equates to bachelor-level requirements, it certifies comprehensive competence in business process management (BPMN 2.0), requirements engineering (IREB), Swiss federal project management standards (HERMES 5 / HERMES 2022), agile delivery (Scrum, Kanban), enterprise architecture (TOGAF), IT service management (ITIL 4), IT financial controlling (TCO, ROI), and Swiss data protection law (revDSG). Note on format and language: the official federal examination is conducted in German, French, and Italian and consists of modular written applied case studies rather than multiple-choice questions. This question bank is an English-language multiple-choice study adaptation created by OpenExamPrep—not an official translation and not a simulation of the exam format—that preserves authentic Swiss and international business-informatics terminology.

Assessment

Three examination parts under the Prüfungsordnung in force from 2023. Part 1, ICT Konzept, is a personal Projektarbeit submitted by the published deadline (31 March for the 2026 sitting). Part 2, ICT Management & Operations, is the written examination day (13 May 2026, Bern). Parts 1 and 3, Projektmanagement und Führung, are examined orally in the following week (18-22 May 2026, Bern). Repeat fees are published per part; two sample papers (Musterprüfungen) are published by ICT-Berufsbildung Schweiz.

Time Limit

Project work prepared in advance, one written examination day, and an oral examination in the following week

Passing Score

Grades run 6 to 1 in half steps, with 4.0 as the pass mark; the detailed pass conditions per examination part are set out in the Prüfungsordnung.

Exam Fee

CHF 3,000 including additional fees, of which CHF 200 covers issuing the Fachausweis, the graduation ceremony or inspection of the examination file; preparatory courses are eligible for the 50% Swiss federal tuition subsidy (Bundesbeiträge, capped at CHF 9,500) (ICT-Berufsbildung Schweiz, under SBFI supervision)

Wirtschaftsinformatiker FA Exam Content Outline

25%

Business Process Management & Requirements Engineering

Business process modeling (BPMN 2.0 notation, pools, lanes, gateways, events), process optimization (As-Is vs To-Be, Lean/Six Sigma DMAIC), requirements engineering (IREB standard, user stories, acceptance criteria, use cases), and digital transformation.

25%

IT Project Management & Swiss Standards (HERMES)

Swiss federal project management standard HERMES (HERMES 5 / HERMES 2022: phases, roles, decision gates, scenario models), agile frameworks (Scrum, Kanban, SAFe), project risk management, effort estimation, and quality management.

25%

Enterprise Architecture, IT Strategy & Integration

Enterprise architecture frameworks (TOGAF ADM, Zachman), business-IT alignment, IT strategy development, ERP/CRM system architectures (SAP, Dynamics), enterprise application integration (EAI, APIs, ETL), and data warehousing.

25%

IT Controlling, Governance, Security & Swiss Law

IT financial management (TCO, ROI, CAPEX vs OPEX, cost allocation), IT service management (ITIL 4 SVS, SLAs), information security (ISO 27001), revised Swiss Data Protection Act (revDSG / FADP), and Swiss public procurement (BöB/VöB).

How to Pass the Wirtschaftsinformatiker FA Exam

What You Need to Know

  • Passing score: Grades run 6 to 1 in half steps, with 4.0 as the pass mark; the detailed pass conditions per examination part are set out in the Prüfungsordnung.
  • Assessment: Three examination parts under the Prüfungsordnung in force from 2023. Part 1, ICT Konzept, is a personal Projektarbeit submitted by the published deadline (31 March for the 2026 sitting). Part 2, ICT Management & Operations, is the written examination day (13 May 2026, Bern). Parts 1 and 3, Projektmanagement und Führung, are examined orally in the following week (18-22 May 2026, Bern). Repeat fees are published per part; two sample papers (Musterprüfungen) are published by ICT-Berufsbildung Schweiz.
  • Time limit: Project work prepared in advance, one written examination day, and an oral examination in the following week
  • Exam fee: CHF 3,000 including additional fees, of which CHF 200 covers issuing the Fachausweis, the graduation ceremony or inspection of the examination file; preparatory courses are eligible for the 50% Swiss federal tuition subsidy (Bundesbeiträge, capped at CHF 9,500)

Keys to Passing

  • Work through all 100 available questions
  • Review every answer and explanation
  • Track weak areas and revisit them
  • Use our AI tutor for tough concepts

Wirtschaftsinformatiker FA Study Tips from Top Performers

1Master BPMN 2.0 Gateway Semantics: Clearly distinguish between exclusive (XOR), inclusive (OR), parallel (AND), event-based, and complex gateways, and understand the difference between message flows (across pools) and sequence flows (within pools).
2Understand the Swiss HERMES 2022 Project Methodology: Know the four standard phases (Initiation, Concept, Implementation, Deployment), the core roles (Auftraggeber, Projektleiter, Anwendervertreter, Erstellervertreter), decision tasks, and mandatory milestones/quality gates.
3Calculate Financial Metrics for IT Investments: Practice calculating Total Cost of Ownership (TCO = Capital costs + Implementation costs + Recurring operational/maintenance costs), Net Present Value (NPV), Payback Period, and Return on Investment (ROI).
4Apply TOGAF 10 Architecture Development Method (ADM): Understand the iteration cycle from Preliminary Phase and Architecture Vision (Phase A) through Business Architecture (Phase B), Information Systems Architecture (Phase C: Data & Application), Technology Architecture (Phase D), and Architecture Change Management (Phase H).
5Navigate Swiss Compliance & Data Protection: Master the principles of the revised Swiss Federal Act on Data Protection (revDSG / FADP: privacy by design, privacy by default, data transfer safeguards, duty to report breaches to FDPIC / EDÖB within 72 hours) and Swiss public procurement thresholds (BöB/VöB).

Frequently Asked Questions

What is the Wirtschaftsinformatiker mit eidg. Fachausweis?

The Wirtschaftsinformatiker/in mit eidgenössischem Fachausweis (Informaticien/ne de gestion avec brevet fédéral) is a federally accredited professional qualification (Berufsprüfung) in Switzerland placed at NQF level 6, validating senior competence in business process optimization, requirements engineering, IT project management, and enterprise IT governance.

Who organizes the Swiss Business Informatics Federal Examination?

The examination is organized and administered by ICT-Berufsbildung Schweiz, the national competence body for the ICT sector, under the regulatory authority of the SBFI.

What are the admission requirements for the Federal Examination?

ICT-Berufsbildung Schweiz publishes three routes: an EFZ in the ICT field plus at least two years of professional practice in ICT; a Kauffrau/Kaufmann EFZ (profile E or M) plus at least two years of professional practice in ICT; or an EFZ or a Maturitätszeugnis of any type plus at least four years of professional practice in the ICT field. Admission is decided only through the association's Vorabklärungsportal.

How is the Federal Examination structured and scored?

The official Prüfungsausschreibung names three parts: 1. ICT Konzept, a personal Projektarbeit submitted in advance; 2. ICT Management & Operations, examined in writing; 3. Projektmanagement und Führung, examined orally. For the 2026 sitting the project work was due 31 March, the written part fell on 13 May and the oral part ran 18-22 May in Bern. Grades run 6 to 1 in half steps with 4.0 as the pass mark.

Are preparatory courses subsidized by the Swiss Federal Government?

Yes. Under the SBFI federal tuition subsidy (Bundesbeiträge für eidgenössische Prüfungen), candidates residing in Switzerland receive a direct 50% reimbursement of eligible preparatory course fees (up to CHF 9,500) upon participating in the federal examination.

Why are practice questions provided in English on OpenExamPrep?

While official Swiss exams are written in German, French, or Italian, modern business analysis, enterprise architecture (TOGAF), project management (Scrum, HERMES), and corporate IT environments in Switzerland operate extensively in English. This practice bank adapts Swiss competencies and legal frameworks into rigorous English-language practice questions.