All Practice Exams

Free Practice Questions for NCEA Level 2 Digital Technologies

Exam-style questions and explanations by OpenExamPrep.

✓ No registration✓ No credit card

Loading practice questions...

Exam Review

Key Facts: NCEA Level 2 Digital Technologies Exam

NCEA Level 2 Digital Technologies consists of standards 91890–91899.

Assesses both theoretical computer science concepts and practical software development skills.

This 100-question practice bank features 30 Easy, 50 Medium, and 20 Hard difficulty questions.

Includes complete answer explanations and distractor reasoning for effective study.

Discloses an English-language MCQ study adaptation of official NZQA learning objectives.

This practice test bank provides 100 questions covering topics from NZQA NCEA Level 2 Digital Technologies standards, covering computer science concepts (AS91898), networks (AS91895), database development (AS91892), programming (AS91896), and digital outcome evaluation/cybersecurity (AS91899). It discloses an English-language MCQ study adaptation designed for secondary school exam preparation.

Sample NCEA Level 2 Digital Technologies Practice Questions

Try these sample questions to review concepts for the NCEA Level 2 Digital Technologies exam. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1Which statement best describes symmetric key encryption?
A.The same secret key is used for both encrypting and decrypting data.
B.A public key encrypts data while a private key decrypts it.
C.A one-way mathematical function generates a unique hash value.
D.Data is signed using a digital certificate from a certificate authority.
Explanation: Symmetric key encryption relies on a single shared secret key that both the sender and receiver use to encrypt and decrypt plaintext messages.
2In asymmetric encryption, which key is kept secret by the owner and used to decrypt incoming messages?
A.The public key
B.The private key
C.The session key
D.The parity key
Explanation: In asymmetric cryptography, the private key is held strictly secret by the owner and is used to decrypt messages that were encrypted with the corresponding public key.
3How does a basic Caesar cipher encrypt plaintext messages?
A.It scrambles letter positions according to a random permutation grid.
B.It substitutes each letter by swapping vowels and consonants.
C.It shifts each letter in the alphabet by a fixed numerical offset.
D.It converts characters into binary ASCII codes and performs an XOR operation.
Explanation: The Caesar cipher is a substitution cipher that shifts every letter in the plaintext message by a fixed number of positions down the alphabet.
4What is the primary difference between encryption and cryptographic hashing?
A.Encryption produces variable output lengths whereas hashing always produces short numbers.
B.Encryption requires internet connectivity whereas hashing works offline.
C.Encryption can only process plain text whereas hashing works on binary files.
D.Encryption is a two-way process (reversible), whereas hashing is a one-way process (irreversible).
Explanation: Encryption is designed to be reversed (decrypted) using a secret key to recover the original plaintext. Hashing is a one-way function that produces a fixed-size digest and cannot be reversed to yield the input data.
5If an 8-bit binary system uses EVEN parity and the 7 data bits are 1011001, what must the parity bit be set to?
A.0
B.1
C.2
D.10
Explanation: The 7 data bits '1011001' contain four 1s (an even count). Under even parity, the total number of 1 bits must remain even, so the parity bit must be 0.
6What is the main function of a checksum in digital communications?
A.To compress data before transmission over low-bandwidth links.
B.To detect whether errors occurred during data transmission or storage.
C.To encrypt sensitive data against unauthorized network eavesdropping.
D.To automatically correct corrupted bits in network frames.
Explanation: A checksum is a calculated numerical value derived from transmitted data. The receiver calculates the checksum independently to detect if corruption occurred during transit.
7Which mathematical problem underpins the security of the RSA public key cryptosystem?
A.Computing discrete logarithms over finite fields.
B.Finding collisions in 256-bit SHA hash functions.
C.The computational difficulty of factoring the product of two large prime numbers.
D.Solving linear algebra equations in polynomial time.
Explanation: RSA encryption relies on the asymmetric trapdoor mathematical property that multiplying two large prime numbers is easy, but factoring their large composite product back into the original primes is computationally infeasible.
8In digital signatures, how does the receiver verify that a document was genuinely created by the sender and was not modified?
A.The receiver decrypts the signature using their own private key.
B.The receiver hashes the document and encrypts it using the sender's public key.
C.The sender encrypts the document with a symmetric AES key.
D.The receiver decrypts the sender's signature using the sender's public key and compares the resulting hash to a freshly computed document hash.
Explanation: The sender creates a digital signature by encrypting a document hash with their private key. The receiver decrypts the signature using the sender's public key to reveal the original hash, and verifies it matches the hash of the received document.
9Which machine learning paradigm involves training an algorithm using paired input data and explicit correct output labels?
A.Supervised learning
B.Unsupervised learning
C.Reinforcement learning
D.Heuristic clustering
Explanation: Supervised learning algorithms are provided with a labeled dataset containing inputs and ground-truth outputs, allowing the model to learn a function mapping inputs to targets.
10What is the primary objective of unsupervised machine learning algorithms such as K-Means?
A.To predict exact numerical values based on regression equations.
B.To group unlabeled data points into clusters based on shared characteristics.
C.To play games by maximizing reward signals through trial and error.
D.To convert audio signals into encrypted text streams.
Explanation: Unsupervised learning methods like K-Means analyze unlabeled datasets to discover intrinsic groupings or clusters based on feature similarities.

About the NCEA Level 2 Digital Technologies Exam

The NCEA Level 2 Digital Technologies qualification assesses secondary school students in New Zealand on computer science concepts, network architecture, relational database design, advanced programming, and cybersecurity. This 100-question practice test bank is an English-language multiple-choice question (MCQ) study adaptation designed to thoroughly prepare students across all official NCEA Level 2 Digital Technologies standards (AS91890 to AS91899).

Exam sponsor: New Zealand Qualifications Authority (NZQA). The requirements and fees below concern the certification or admission exam, separate from our free practice resources.

Assessment

NZQA external assessment combines a written/digital examination with submitted digital reports on computer science and programming concepts. The remaining standards are internally assessed through developed digital outcomes.

Time Limit

3 hours. NZQA end-of-year examination sessions run for three hours, and a single session can assess up to three external achievement standards in the subject.

Passing Score

Achieved grade threshold (50%+)

Exam / Certification Fees

Included in secondary school enrollment

Exam sponsor website

Reported exam pass rate: 70%-80% average pass rate. This describes exam candidates, not OpenExamPrep users or results from using our resources. Exam sponsor website

Fees, eligibility, and exam policies can change. Confirm them with the exam sponsor before applying or paying.

Official sources

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%

Computer Science Concepts (AS91898)

Encryption (ciphers, public/private key cryptography, hashing), Artificial Intelligence and Machine Learning mechanisms, Error Detection and Correction (parity, checksums, Hamming code), and Algorithm Complexity.

20%

Network Infrastructure & Digital Systems (AS91895)

Network topologies, network devices (routers, switches, access points), OSI model layers, IP addressing (IPv4, IPv6, DHCP, DNS), and transmission security protocols.

20%

Database Design & SQL (AS91892)

Relational database concepts, primary and foreign keys, entity relationships (1:1, 1:M, M:N), normalization up to 3NF, referential integrity, and multi-table SQL queries.

20%

Advanced Programming & Software Development (AS91896 & AS91897)

Data structures, control structures, functions, scope, systematic software testing (boundary edge values), debugging strategies, and iterative Agile software processes.

15%

Cybersecurity, UX Design & Legal/Ethical Implications (AS91899, AS91890, AS91891)

Common cyber threats (phishing, malware, social engineering, DDoS), security controls, NZ Privacy Act 2020, Nielsen's 10 Usability Heuristics, accessibility standards, and digital outcome evaluation.

Preparing for the NCEA Level 2 Digital Technologies Exam

What You Need to Know

  • Passing score: Achieved grade threshold (50%+)
  • Assessment: NZQA external assessment combines a written/digital examination with submitted digital reports on computer science and programming concepts. The remaining standards are internally assessed through developed digital outcomes.
  • Time limit: 3 hours. NZQA end-of-year examination sessions run for three hours, and a single session can assess up to three external achievement standards in the subject.
  • Exam / certification fees: Included in secondary school enrollment 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

NCEA Level 2 Digital Technologies: Suggested Study Strategy

1Understand the difference between symmetric encryption (same key) and asymmetric encryption (public/private key pair).
2Master database normalization: 1NF requires atomic values, 2NF eliminates partial dependencies, and 3NF eliminates transitive dependencies.
3Learn key network device roles: switches operate at Layer 2 using MAC addresses, while routers operate at Layer 3 using IP addresses.
4Memorize Nielsen's usability heuristics such as 'Visibility of system status', 'Consistency and standards', and 'Error prevention'.
5Practice systematic boundary testing for programming logic: test minimum, maximum, just below, and just above boundary thresholds.

Frequently Asked Questions

What standards are covered under NCEA Level 2 Digital Technologies?

The course covers achievement standards AS91890 through AS91899, encompassing internal outcome projects and external standards such as AS91898 (Computer Science Concepts) and AS91899 (Digital Outcome Summary).

Is this practice bank an official NZQA examination?

No. This practice set is an English-language multiple-choice question (MCQ) study adaptation created to assist students in preparing for NCEA Level 2 Digital Technologies assessments.

What computer science concepts are assessed in AS91898?

AS91898 focuses on core computer science topics including Encryption, Artificial Intelligence/Machine Learning, Error Detection and Correction, and Algorithm Complexity.

How are database skills evaluated in NCEA Level 2?

Under AS91892, students must demonstrate advanced techniques such as designing relational databases, establishing primary/foreign key relationships, normalizing data to 3NF, and executing SQL queries.

What legal and ethical guidelines apply to NCEA Digital Tech outcomes?

Students must understand the New Zealand Privacy Act 2020, Copyright Act, Creative Commons licensing, accessibility standards (WCAG), and ethical implications of emerging technologies.