All Practice Exams

Free Practice Questions for Maturità Tecnico Tecnologico

Exam-style questions and explanations by OpenExamPrep.

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

Loading practice questions...

Exam Review

Key Facts: Maturità Tecnico Tecnologico Exam

100 points

Total maximum examination grade (minimum 60 points to pass)

MIM Ordinanza Ministeriale 54/2026

40 points

Maximum academic credit (credito scolastico) from years 3-5

D.Lgs. 62/2017

20 points each

Weight of Prima Prova, Seconda Prova, and Colloquio Orale

MIM O.M. 54/2026

€12.09

Statutory state examination fee

Agenzia delle Entrate / MIM

6-8 hours

Typical duration of the Seconda Prova written technical exam

MIM Quadri di Riferimento

9 tracks

Specialization tracks (indirizzi) within the Settore Tecnologico

D.P.R. 88/2010

The Maturità Settore Tecnologico is Italy's official state diploma exam for technical high school students under MIM Ordinanza Ministeriale n. 54/2026. Comprising a national Italian written exam, a track-specific technical design/problem paper, and a comprehensive oral interview, candidates are evaluated out of 100 points (minimum 60/100 to graduate). This 100-question practice set is an independent English MCQ study resource designed for theoretical and quantitative review across major engineering specializations.

Sample Maturità Tecnico Tecnologico Practice Questions

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

1Which language-level mechanism enables runtime polymorphism in object-oriented languages such as C++ or Java?
A.Dynamic method dispatch to an overridden method
B.Static method overloading resolved at compile time
C.Memory alignment using byte padding in class definitions
D.Multiple inheritance of concrete state variables
Explanation: Runtime polymorphism (late binding) lets the program choose an overridden method from the object's runtime type. A virtual-method table is one common implementation technique, but it is not required by the Java or C++ language specification and is therefore not the defining mechanism.
2A relational database table is in Third Normal Form (3NF) if and only if which condition is satisfied?
A.It is in 2NF and contains no non-trivial transitive functional dependencies of non-prime attributes on the primary key
B.All columns contain repeating groups and atomic multi-valued sets
C.Every composite candidate key is decomposed into separate non-relational document collections
D.It is in 1NF and some non-prime attributes depend only on a proper subset of a composite primary key
Explanation: Third Normal Form (3NF) requires a relation to be in Second Normal Form (2NF) and ensure that no non-prime attribute is transitively dependent on the primary key. In simpler terms, every non-key attribute must depend directly on the primary key, the whole key, and nothing but the key. Eliminating transitive dependencies prevents update, insertion, and deletion anomalies.
3In the standard TCP/IP protocol suite, which protocol provides connection-oriented, reliable byte-stream transmission with flow control and congestion management?
A.User Datagram Protocol (UDP)
B.Transmission Control Protocol (TCP)
C.Internet Control Message Protocol (ICMP)
D.Address Resolution Protocol (ARP)
Explanation: TCP operates at the transport layer to establish a logical end-to-end connection between two communicating hosts using a three-way handshake. It guarantees ordered, reliable data delivery through sequence numbers, acknowledgments, retransmission timers, and sliding-window flow control. UDP, in contrast, is a lightweight connectionless protocol without retransmission or ordering guarantees.
4In HTTP semantics, which method is defined as both idempotent and safe?
A.POST
B.DELETE
C.GET
D.PATCH
Explanation: Under the current HTTP Semantics specification, GET has safe and idempotent semantics. Safety describes the requested semantics, not a guarantee that a server performs no incidental logging or other side effects. DELETE and PUT are idempotent but not safe, while POST and PATCH are not generally idempotent.
5An IPv4 network is configured with the subnet mask 255.255.255.192 (/26). How many usable host IP addresses are available within this subnet?
A.62
B.64
C.126
D.30
Explanation: A /26 subnet allocates 26 bits for the network portion, leaving 32 - 26 = 6 bits for the host identifier. The total number of IP addresses in the block is 2^6 = 64. However, the first address is reserved as the network identifier and the last address is reserved as the directed broadcast address, leaving 64 - 2 = 62 usable host addresses.
6What is the primary operational advantage of asymmetric cryptography over symmetric cryptography in secure communications?
A.Asymmetric encryption provides significantly higher computational throughput for bulk data encryption
B.It solves the secure key-distribution problem because the public key can be freely distributed over untrusted channels
C.Asymmetric ciphertexts are significantly smaller in byte length than symmetric ciphertexts
D.Asymmetric keys never require mathematical relationships between the private and public components
Explanation: Asymmetric (public-key) cryptography uses a mathematically linked key pair: a public key for encryption and a private key for decryption. This solves the fundamental key distribution problem of symmetric ciphers, allowing parties to communicate securely without pre-sharing a secret key over a protected out-of-band channel. In practical hybrid cryptosystems (such as TLS), asymmetric encryption is used to negotiate a symmetric session key, which then encrypts the bulk payload efficiently.
7In object-oriented programming, which access modifier allows a class member to be accessible within its own class and by derived subclasses, but hides it from unrelated external classes?
A.private
B.public
C.protected
D.static
Explanation: The protected access specifier supports controlled encapsulation across class hierarchies. It permits direct member access by methods of the defining class as well as derived subclasses, while preventing direct access from external client code or unrelated classes. The private modifier restricts visibility exclusively to the defining class, while public exposes members everywhere.
8Consider two tables: Customers (CustomerID, Name) and Orders (OrderID, CustomerID, Amount). Which SQL query returns all customers, including those who have placed no orders?
A.SELECT Customers.Name, Orders.Amount FROM Customers INNER JOIN Orders ON Customers.CustomerID = Orders.CustomerID;
B.SELECT Customers.Name, Orders.Amount FROM Customers LEFT JOIN Orders ON Customers.CustomerID = Orders.CustomerID;
C.SELECT Customers.Name, Orders.Amount FROM Customers RIGHT JOIN Orders ON Customers.CustomerID = Orders.CustomerID;
D.SELECT Customers.Name, Orders.Amount FROM Customers CROSS JOIN Orders;
Explanation: A LEFT OUTER JOIN (or simply LEFT JOIN) preserves all rows from the left table (Customers) regardless of whether there is a matching row in the right table (Orders). When a customer has no matching orders, the columns from Orders in the result set evaluate to NULL. An INNER JOIN would filter out any customers without corresponding orders.
9During the establishment of a standard TCP connection (Three-Way Handshake), what sequence of TCP control flags is exchanged between client (Host A) and server (Host B)?
A.A sends SYN; B responds with SYN + ACK; A sends ACK
B.A sends ACK; B responds with SYN; A sends FIN
C.A sends SYN; B responds with ACK; A sends SYN + ACK
D.A sends RST; B responds with SYN; A sends PSH + ACK
Explanation: The TCP three-way handshake synchronizes sequence numbers between communicating endpoints before data transfer begins. The initiating client sends a segment with the SYN flag set and an initial sequence number (ISN_A). The server acknowledges by responding with SYN + ACK, confirming receipt of ISN_A and transmitting its own sequence number (ISN_B), and the client concludes by sending an ACK acknowledging ISN_B.
10Which transaction anomaly occurs when Transaction T1 reads uncommitted data modified by Transaction T2, and T2 subsequently executes a ROLLBACK?
A.Non-repeatable read (Fuzzy read)
B.Dirty read
C.Phantom read
D.Lost update
Explanation: A dirty read occurs when a transaction reads data that has been modified by another concurrent transaction that has not yet committed. If the modifying transaction rolls back, the data read by the first transaction is invalid and never formally existed in the database. The READ COMMITTED isolation level is specifically designed to prevent dirty reads by ensuring transactions only view committed records.

About the Maturità Tecnico Tecnologico Exam

The Esame di Stato conclusivo del secondo ciclo di istruzione for the Istituti Tecnici - Settore Tecnologico is Italy's official technical secondary school leaving examination, administered under the regulatory framework of Legislative Decree 62/2017 and annual Ministerial Orders issued by the Ministero dell'Istruzione e del Merito (MIM), including Ordinanza Ministeriale n. 54 del 26 marzo 2026. The Settore Tecnologico encompasses nine distinct technical tracks (indirizzi), including Informatics and Telecommunications, Electronics and Electrical Engineering, Mechanics, Mechatronics and Energy, Chemistry, Materials and Biotechnology, and Construction, Environment and Territory (CAT). Rather than sharing a single uniform technical exam, each indirizzo and articolazione is assigned an official characterizing subject for the Seconda Prova Scritta based on national Quadri di Riferimento. This practice question bank is an independent educational resource developed by OpenExamPrep. It offers an English-language multiple-choice adaptation of core technical, mathematical, and regulatory knowledge across the primary technological tracks to support conceptual review and quantitative problem-solving. This prep bank is independent and is not endorsed by, sponsored by, or affiliated with the Ministero dell'Istruzione e del Merito (MIM).

Exam sponsor: Ministero dell'Istruzione e del Merito (MIM). The requirements and fees below concern the certification or admission exam, separate from our free practice resources.

Assessment

The Maturità Settore Tecnologico consists of three components scored up to 60 points total, added to up to 40 school credit points (credito scolastico) for a final score out of 100 points: Prima Prova Scritta (nationwide Italian language and literature, up to 20 points, 6 hours), Seconda Prova Scritta (branch-characterizing technical paper, up to 20 points, 6 to 8 hours), and the Colloquio Orale (multidisciplinary oral viva, up to 20 points, 50 to 60 minutes). Passing requires at least 60/100 points overall. This bank is an English-language MCQ study adaptation of technical theory and calculation principles; it does not simulate manual drafting, CAD designs, laboratory practicals, Italian essay writing, or the oral colloquio.

Time Limit

Prima Prova 6 hours; Seconda Prova timing depends on the specialization paper; oral duration set by the commission

Passing Score

Minimum 60/100 points overall across school credit and all three examination components

Exam / Certification Fees

€12.09 (statutory state examination 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.

25%

Informatics, Software Engineering & Computer Networks

Object-oriented programming paradigms, relational database normalization and SQL queries, TCP/IP network protocol stack, routing algorithms, cybersecurity fundamentals, and web application architecture

25%

Electronics, Electrotechnics & Automation

DC and AC circuit analysis, operational amplifier circuits, digital logic and Boolean minimization, microcontrollers, embedded systems, PLC ladder programming, and industrial transducers

25%

Mechanics, Mechatronics & Energy Systems

Applied mechanics, machine component design and stress calculations, engineering thermodynamics, renewable energy systems, and pneumatic and hydraulic power transmission

25%

Chemical Materials, Environmental Technologies & Construction/CAT

Industrial chemistry and stoichiometry, metallurgy and material phase diagrams, topographic leveling and surveying, building diagnostics, structural mechanics, and Italian environmental safety regulations

Preparing for the Maturità Tecnico Tecnologico Exam

What You Need to Know

  • Passing score: Minimum 60/100 points overall across school credit and all three examination components
  • Assessment: The Maturità Settore Tecnologico consists of three components scored up to 60 points total, added to up to 40 school credit points (credito scolastico) for a final score out of 100 points: Prima Prova Scritta (nationwide Italian language and literature, up to 20 points, 6 hours), Seconda Prova Scritta (branch-characterizing technical paper, up to 20 points, 6 to 8 hours), and the Colloquio Orale (multidisciplinary oral viva, up to 20 points, 50 to 60 minutes). Passing requires at least 60/100 points overall. This bank is an English-language MCQ study adaptation of technical theory and calculation principles; it does not simulate manual drafting, CAD designs, laboratory practicals, Italian essay writing, or the oral colloquio.
  • Time limit: Prima Prova 6 hours; Seconda Prova timing depends on the specialization paper; oral duration set by the commission
  • Exam / certification fees: €12.09 (statutory state examination 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

Maturità Tecnico Tecnologico: Suggested Study Strategy

1Focus on the official MIM Quadri di Riferimento: Review the core competencies (nuclei tematici fondamentali) specified for your specialization's characterizing discipline in the ministerial framework.
2Practice quantitative engineering calculations: Work through numerical problems involving Ohm's law, Thevenin equivalents, beam stress calculations, thermodynamic cycles, and surveyor differential leveling by hand.
3Integrate civic education and safety laws: The oral colloquium frequently assesses knowledge of Italian workplace health and safety legislation (D.Lgs. 81/2008), environmental protection standards, and technical deontology.
4Prepare a concise formazione scuola-lavoro reflection explaining the methods, tools, and technical problem-solving approaches used during work-linked learning.
5Master technical terminology in both Italian and English: Modern technical curricula require familiarity with standard international technical norms (ISO, IEC, UNI, IEEE) and English technical specifications.

Frequently Asked Questions

What is the Esame di Stato for Istituti Tecnici Settore Tecnologico?

The Esame di Stato (commonly called Maturità) is the mandatory national exit examination taken at the conclusion of five years of upper secondary education in Italy. For students in the Settore Tecnologico, it certifies technical competence and confers the Diploma di Istituto Tecnico, granting immediate access to the Italian technical labor market, higher technical institutes (ITS Academy), and all university undergraduate degree courses.

Do all nine specializations in the Settore Tecnologico take the same second written exam?

No. The first written paper (Italian literature and essay) is identical for all Italian secondary students nationwide. However, the second written paper (Seconda Prova) is strictly specific to each indirizzo and articolazione (e.g., Sistemi e Reti for Informatics, Elettrotecnica ed Elettronica for Electronics, Meccanica, Macchine ed Energia for Mechanics, Progettazione, Costruzioni e Impianti for CAT). The specific subject is announced annually in late January by ministerial decree under MIM Quadri di Riferimento.

How is the Maturità final grade calculated in 2026?

Under D.Lgs. 62/2017 and MIM O.M. 54/2026, the final grade is calculated out of 100 points: up to 40 points awarded for school academic credit (credito scolastico) accumulated over the third, fourth, and fifth years; up to 20 points for the Prima Prova; up to 20 points for the Seconda Prova; and up to 20 points for the Colloquio Orale. The minimum passing score is 60/100, with honors (lode) possible for top candidates achieving 100 points with maximum credit.

What is the fee to take the Maturità examination?

Candidates in state schools pay a statutory state examination fee of €12.09 (tassa erariale per esame di stato) to the Italian revenue agency (Agenzia delle Entrate) upon submitting their formal examination candidacy in the final year. Individual schools may request a small voluntary contribution to cover specialized workshop consumables.

How does this practice bank adapt the official exam format?

The official exam requires writing an extensive Italian essay, completing an authentic engineering project or multi-part technological design problem by hand or on CAD/development environments, and participating in a multi-disciplinary oral colloquium. This OpenExamPrep bank is an independent English-language MCQ study adaptation providing 100 targeted questions to help students review foundational engineering theory, scientific calculations, and regulatory standards.

Is this practice resource affiliated with the Ministero dell'Istruzione e del Merito (MIM)?

No. This question bank is completely independent and is not endorsed by, affiliated with, or reviewed by the Ministero dell'Istruzione e del Merito (MIM) or any Italian educational board. It is designed solely as an auxiliary study aid.