All Practice Exams

Free Practice Questions for Saxony Abitur Informatics

Exam-style questions and explanations by OpenExamPrep.

✓ No registration✓ No credit card
100+ Questions
100% Free

Loading practice questions...

Exam Review

Key Facts: Saxony Abitur Informatics Exam

Teil A/B/C

Sachsen LK Informatik uses three Prüfungsteile: foundational Pflichtaufgaben (A), practical Pflichtaufgaben (B), and one Wahlaufgabe from two options (C)

VwV Abiturprüfung 2026, Leistungskursfach Informatik

300 min

Gesamtarbeitszeit including Auswahlzeit; Prüfungsteil A at most 100 minutes before Hilfsmittel are released

VwV Abiturprüfung 2026, Arbeitszeiten Informatik

120 BE

LK Informatik scoring: Prüfungsteil A 40 BE; Prüfungsteile B+C together 80 BE on the 120-BE scale

VwV Abiturprüfung 2026, Bewertungsmaßstab Informatik

05.05.2026

Written Informatik date in the 2026 main session; Nachtermin 29.05.2026

schule.sachsen.de Gymnasium Terminübersicht Abiturprüfung 2026

Python / Java

Practical Hilfsmittel in B/C include Python 3 or Java documentation plus MMS and the IQB Formelsammlung

VwV Abiturprüfung 2026 Hilfsmittel; SMK Handreichung LK Informatik

0–15 Punkte

Grading scale for each Prüfungsfach after BE-to-Punkte conversion under Saxon Oberstufen rules

SOGYA / VwV Durchführung Oberstufe und Abiturprüfung

Free 100-question English MCQ study bank for Sachsen Abitur Informatik (LK). Official exam: German Teil A/B/C Klausur, 300 min (A ≤ 100 min), 120-BE scale (A 40 / B+C 80), written 05.05.2026 (Nach 29.05.2026); MMS + IQB Formelsammlung + Python/Java docs in B/C. Not an official-format simulation; no fee for regular school candidates.

Sample Saxony Abitur Informatics Practice Questions

Try these sample questions to review concepts for the Saxony Abitur Informatics exam. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1In computer science, an algorithm is best defined as:
A.A finite, precise sequence of unambiguous steps that solves a class of problems
B.Any set of English sentences describing a computer
C.A physical CPU instruction only
D.A database table schema
Explanation: An algorithm is a finite, unambiguous, effective procedure that transforms inputs into outputs for a defined problem class — the foundation of algorithmic problem solving in the Saxon Informatik Lehrplan.
2Which sorting algorithm repeatedly compares adjacent elements and swaps them if they are out of order?
A.Hashing
B.Bubblesort
C.Binary search
D.Depth-first search
Explanation: Bubblesort repeatedly passes through a list, swapping adjacent out-of-order pairs so that extreme values 'bubble' toward one end until the list is sorted.
3What is the typical worst-case time complexity of Bubblesort on n elements?
A.O(1)
B.O(n!)
C.O(n²)
D.O(log n)
Explanation: In the worst case Bubblesort performs nested comparisons across the list, giving quadratic O(n²) growth in n.
4Binary search on a sequence requires which precondition?
A.The sequence must contain only unique values and be unsorted
B.The sequence length must be a power of two
C.No precondition is required
D.The sequence must already be sorted in a consistent order
Explanation: Binary search repeatedly discards half the search interval by comparing with the middle element, which is correct only when the sequence is sorted.
5What is the time complexity of binary search on a sorted list of n elements?
A.O(log n)
B.O(n²)
C.O(n!)
D.O(2^n)
Explanation: Each step halves the remaining interval, so the number of comparisons grows logarithmically with n: O(log n).
6Which abstract data type follows the LIFO (Last-In, First-Out) principle?
A.Unordered bag only
B.Stack (Stapel)
C.Queue (Schlange)
D.Set with no order
Explanation: A stack removes the most recently pushed element first (LIFO), matching the Saxon Lehrplan emphasis on LIFO/FIFO principles.
7Which abstract data type follows the FIFO (First-In, First-Out) principle?
A.Binary search tree root only
B.Hash table collision chain only
C.Queue (Schlange)
D.Stack (Stapel)
Explanation: A queue enqueues at the rear and dequeues from the front, so the earliest inserted element leaves first (FIFO).
8In a singly linked list, each node typically stores:
A.Only an index into a fixed array with no references
B.Only a previous-node reference with no data
C.A complete copy of every other list node
D.A data value and a reference to the next node
Explanation: A singly linked list node holds its payload plus a pointer/reference to the successor, enabling dynamic insertion without shifting an array.
9Which traversal of a binary tree visits left subtree, then root, then right subtree?
A.In-order (Inorder)
B.Pre-order only
C.Level-order only
D.Post-order only
Explanation: In-order traversal processes left, then root, then right. For a binary search tree this yields keys in sorted order.
10Which traversal visits the root before its left and right subtrees?
A.Reverse in-order only
B.Pre-order (Preorder)
C.In-order only
D.Post-order only
Explanation: Pre-order visits the root first, then recursively the left and right subtrees — useful for copying a tree's structure.

About the Saxony Abitur Informatics Exam

Sachsen Abitur Informatik is the written Leistungskurs Computer Science examination for the Allgemeine Hochschulreife in the Freistaat Sachsen, administered under VwV Abiturprüfung 2026 and the SMK Handreichung for LK Informatik. Content follows the sächsische Lehrpläne Informatik: Technische Informatik (von-Neumann architecture, number systems), Datenstrukturen und Algorithmen (lists, trees, sorting/searching, complexity), Programmierparadigmen and Softwareentwicklung (Python/Java), Sprachen und Automaten, Rechnernetze, Informationssicherheit (including RSA and One-Time-Pad emphases), Datenmanagement (relational SQL with joins and aggregates), and Künstliche Intelligenz foundations. This free bank of 100 original English multiple-choice questions trains that conceptual knowledge. It is not a simulation of the official exam, which is written in German across Prüfungsteile A/B/C with practical computer work scored in Bewertungseinheiten.

Exam sponsor: Sächsisches Staatsministerium für Kultus (SMK), supported by the Landesamt für Schule und Bildung. The requirements and fees below concern the certification or admission exam, separate from our free practice resources.

Assessment

Official written Sachsen Abitur examination in Leistungskurs Informatik. Prüfungsteil A: several Pflichtaufgaben on foundational informatics (submitted within the first 100 minutes, after which Hilfsmittel are released). Prüfungsteil B: Pflichtaufgaben from various Lernbereiche with practical file/tool use. Prüfungsteil C: one of two Wahlaufgaben requiring independent tool selection on open/practical problems. Hilfsmittel in B/C: MMS (no network), IQB Formelsammlung, Python 3 or Java documentation (SMK Softwareliste). Scoring: Teil A 40 BE; B+C together 80 BE (120-BE scale). This 100-question bank is an English MCQ study adaptation only — it does not simulate the German free-response/practical format.

Time Limit

300 minutes Gesamtarbeitszeit including Auswahlzeit for Prüfungsteile A, B and C; Prüfungsteil A at most 100 minutes (VwV Abiturprüfung 2026). Written main date Tuesday 5 May 2026; Nachtermin Friday 29 May 2026.

Passing Score

Subject performance is reported on the 0–15 Punkte scale, derived from Bewertungseinheiten on the 120-BE scale for LK Informatik (A: 40 BE; B+C: 80 BE). The Gesamtqualifikation requires sufficient Punkte in Block I (max 600) and Block II (max 300) under SOGYA / VwV Durchführung Oberstufe und Abiturprüfung. Not a single MCQ percent cut score.

Exam / Certification Fees

No exam fee for regular enrolled school candidates; the Abitur is a state school examination in Sachsen. External and Nichtschüler routes are handled under Saxon school authority rules and do not carry a published Informatik-specific fee.

Exam sponsor website

Our practice resources: topics covered

We aim to reflect publicly available exam outlines and topic information in our study resources. Coverage, format, and difficulty may differ from the actual exam, and we cannot guarantee that every detail is accurate or current. Confirm exam requirements, fees, and policies with the official exam sponsor.

Study emphasis ~28%

Datenstrukturen und Algorithmen

Lists, stacks, queues, trees, sorting and searching algorithms, complexity analysis, and dynamic data types.

Study emphasis ~18%

Objektorientierte Programmierung und Softwareentwicklung

Classes, objects, encapsulation, inheritance, modularization, and software-quality criteria in Python or Java.

Study emphasis ~15%

Datenmanagement und Datenbanken

Relational modeling, SQL with joins, groupings and aggregates, and database integrity.

Study emphasis ~10%

Technische Informatik und Informatiksysteme

Von-Neumann architecture, binary/hex conversions, processors and system components.

Study emphasis ~8%

Rechnernetze

Network layers, addressing, protocols and services.

Study emphasis ~8%

Sprachen, Automaten und Komplexität

Finite automata, formal languages/grammars, and algorithmic complexity ideas.

Study emphasis ~8%

Informationssicherheit

Symmetric vs asymmetric cryptography, One-Time-Pad and RSA fundamentals.

Study emphasis ~5%

Künstliche Intelligenz und gesellschaftliche Aspekte

Decision trees, K-Means clustering concepts, and data-protection implications.

Preparing for the Saxony Abitur Informatics Exam

What You Need to Know

  • Passing score: Subject performance is reported on the 0–15 Punkte scale, derived from Bewertungseinheiten on the 120-BE scale for LK Informatik (A: 40 BE; B+C: 80 BE). The Gesamtqualifikation requires sufficient Punkte in Block I (max 600) and Block II (max 300) under SOGYA / VwV Durchführung Oberstufe und Abiturprüfung. Not a single MCQ percent cut score.
  • Assessment: Official written Sachsen Abitur examination in Leistungskurs Informatik. Prüfungsteil A: several Pflichtaufgaben on foundational informatics (submitted within the first 100 minutes, after which Hilfsmittel are released). Prüfungsteil B: Pflichtaufgaben from various Lernbereiche with practical file/tool use. Prüfungsteil C: one of two Wahlaufgaben requiring independent tool selection on open/practical problems. Hilfsmittel in B/C: MMS (no network), IQB Formelsammlung, Python 3 or Java documentation (SMK Softwareliste). Scoring: Teil A 40 BE; B+C together 80 BE (120-BE scale). This 100-question bank is an English MCQ study adaptation only — it does not simulate the German free-response/practical format.
  • Time limit: 300 minutes Gesamtarbeitszeit including Auswahlzeit for Prüfungsteile A, B and C; Prüfungsteil A at most 100 minutes (VwV Abiturprüfung 2026). Written main date Tuesday 5 May 2026; Nachtermin Friday 29 May 2026.
  • Exam / certification fees: No exam fee for regular enrolled school candidates; the Abitur is a state school examination in Sachsen. External and Nichtschüler routes are handled under Saxon school authority rules and do not carry a published Informatik-specific fee. Official sources

Using Our Practice Resources

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

Saxony Abitur Informatics: Suggested Study Strategy

1Trace list and tree algorithms by hand (insert, delete, traversals) — Lernbereich Datenstrukturen und Algorithmen emphasises Baum and Liste.
2Rehearse SQL SELECT with INNER JOIN, GROUP BY and aggregate functions (MIN, MAX, AVG, COUNT, SUM) until you can write them without looking them up.
3Review von-Neumann components and binary↔decimal↔hex conversions for Technische Informatik tasks in Teil A.
4Contrast symmetric vs asymmetric cryptography and be able to state the One-Time-Pad perfect-secrecy condition and the RSA modular-arithmetic idea.
5Practise reading short Python/Java snippets for classes, methods, parameters and control structures without an IDE — paper tracing is common before the practical parts.
6Know the Teil A/B/C timing rule: submit A within 100 minutes to unlock MMS, Formelsammlung and language documentation for B and C.

Frequently Asked Questions

Is the official Sachsen Informatik Abitur exam multiple-choice?

No. The official written LK Informatik paper is a German-language Klausur in Prüfungsteile A, B and C with theoretical and practical tasks (programming, databases, systems), scored in Bewertungseinheiten. This bank is an English-language MCQ study adaptation only.

How is the written Informatik exam structured?

Per VwV Abiturprüfung 2026: Teil A has several Pflichtaufgaben on foundational content; Teil B has Pflichtaufgaben from various Lernbereiche with a practical component; Teil C requires choosing one of two Wahlaufgaben. All parts are available at the start; Hilfsmittel are released only after Teil A is submitted (within the first 100 minutes).

Which Hilfsmittel are allowed?

In Prüfungsteile B and C: a modular mathematics system (MMS) without network access, the Mathematisch-naturwissenschaftliche Formelsammlung des IQB, and documentation for Python 3 or Java (or other software approved on the SMK Softwareliste). Teil A is completed without those aids until it is handed in.

How long is the written exam and when is it in 2026?

300 minutes Gesamtzeit including Auswahlzeit (Teil A at most 100 minutes). Main written date: Tuesday 5 May 2026; Nachtermin: Friday 29 May 2026 (schule.sachsen.de).

Which programming languages are used?

Saxon LK Informatik expects candidates to work with Python and/or Java as documented in the SMK Handreichung and Softwareliste; exam templates may provide Python or Java programs, CSV data, databases and network simulation files (e.g. Filius).

Is there an exam fee?

No. The Abitur is a state school examination in Sachsen and regular enrolled school candidates pay no fee. Nichtschüler routes are administered under Saxon school authority rules and have no published Informatik-specific fee.