๐Ÿ“– Software Engineering Glossary

A comprehensive Aโ€“Z terminology reference for mastering NESA NSW HSC Software Engineering. Colour-coded chips identify which course topic each term belongs to.

๐Ÿ“˜ Year 11 & 12 ๐Ÿ—‚๏ธ Reference ๐Ÿซ NESA Aligned
140 Terms
7 Topics
Aโ€“X Coverage
Yr 11 Topics Yr 12 Topics Core / Cross-Course
๐Ÿ” Ctrl+K
A

Abstract Class

๐Ÿงฉ OOP

A class that cannot be instantiated directly and exists purely to be subclassed. Abstract classes often define method signatures that subclasses must implement, enforcing a consistent interface across a family of types.

Abstraction

๐Ÿ“ Programming Fundamentals ๐Ÿงฉ OOP

The concept of hiding complex internal implementation details while exposing only the necessary interface to the user or calling code. Reduces cognitive complexity and increases maintainability.

Acceptance Criteria

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

Specific, measurable conditions that must be met to confirm a user story has been implemented correctly. They provide a clear definition of "done" for each requirement.

Access Modifier

๐Ÿงฉ OOP

Keywords (such as public, private, and protected) that control the visibility and accessibility of class members. They enforce encapsulation by restricting which parts of a program can access specific attributes or methods.

Accountability

๐Ÿ”’ Secure Architecture

The principle of tracing every action back to a specific authenticated user through immutable audit logs. Ensures that no action can be performed anonymously within a secure system.

Actuator

๐Ÿค– Mechatronics

An output component that converts electrical energy into physical motion, such as a motor, solenoid, or pneumatic piston. Actuators enable a mechatronic system to interact with the physical world.

ADC (Analog-to-Digital Converter)

๐Ÿค– Mechatronics

A component that samples continuous analog voltages and converts them into discrete digital numbers for processing by a microcontroller. Resolution is measured in bits (e.g., a 10-bit ADC yields 1024 distinct values).

Agile Methodology

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

An iterative and incremental approach to software development focusing on flexibility, responsiveness to change, and frequent client feedback. Agile prioritises working software and customer collaboration over rigid upfront specification.

Artificial Intelligence (AI)

โš™๏ธ Software Automation

The broad field of building machines that can simulate human cognitive functions such as learning, reasoning, and problem-solving. AI encompasses many sub-fields including machine learning, natural language processing, and computer vision.

Algorithm

๐Ÿ“ Programming Fundamentals ๐Ÿ”„ SDLC

A step-by-step procedure required to solve a problem or accomplish a task, defined by its efficiency, clarity, and finiteness. Every algorithm must eventually terminate with a definite result.

API (Application Programming Interface)

๐ŸŒ Programming for the Web โš™๏ธ Software Automation

A contract defining how different software components communicate, specifying request formats and expected responses โ€” without exposing implementation details.

Array

๐Ÿ“ Programming Fundamentals

A data structure consisting of a collection of elements identified by at least one index or key, stored in contiguous memory locations. Arrays provide O(1) access by index.

Asymmetric Encryption

๐Ÿ”’ Secure Architecture

An encryption method using a mathematically linked public and private key pair. The public key encrypts data (or verifies signatures), while only the corresponding private key can decrypt (or sign). Used for secure key exchange and digital signatures.

Attack Surface

๐Ÿ”’ Secure Architecture

The total number of possible ways an attacker can interact with or compromise a software system. Minimising the attack surface โ€” by reducing exposed endpoints, disabling unused features, and enforcing least privilege โ€” is a core security principle.

Attribute

๐Ÿงฉ OOP

A data element or property defined within a class that stores the state of an object. For example, a Car class might have attributes like colour, speed, and fuel_level.

Authentication

๐Ÿ”’ Secure Architecture

The process of verifying the identity of a user or system, often using passwords, biometrics, or multi-factor authentication (MFA). Answers the question: "Who are you?"

Authorisation

๐Ÿ”’ Secure Architecture

The process of determining what an authenticated user is permitted to do, based on the principle of least privilege. Answers the question: "What are you allowed to do?"

Availability

๐Ÿ”’ Secure Architecture

Ensuring that systems and data remain operational and accessible to authorised users when needed. One of the three pillars of the CIA triad alongside Confidentiality and Integrity.

โ†‘ Back to Top
B

Backlog (Product Backlog)

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

A prioritised list of all features, user stories, and bug fixes yet to be completed for a product. In Scrum, the Product Backlog is the single source of work for the development team.

Backpropagation

โš™๏ธ Software Automation

The training process where prediction error is propagated backwards through a neural network to adjust connection weights using gradient descent. This iterative process minimises the loss function over many epochs.

Back-end

๐ŸŒ Programming for the Web

The server-side portion of a web application responsible for business logic, database queries, authentication, and security enforcement. Users never interact with back-end code directly.

Boolean

๐Ÿ“ Programming Fundamentals

A logical data type that represents one of two values: True or False. Booleans are fundamental to control flow, conditions, and logical expressions in every programming language.

โ†‘ Back to Top
C

CDN (Content Delivery Network)

๐ŸŒ Programming for the Web

A geographically distributed network of servers that caches and serves static assets (images, CSS, JS) from locations close to the user, reducing latency and improving load times.

CI/CD (Continuous Integration / Continuous Deployment)

โš™๏ธ Software Automation

A DevOps practice where code changes are automatically built, tested (CI) and deployed to staging or production environments (CD). Enables rapid, reliable delivery cycles with minimal manual intervention.

Class

๐Ÿงฉ OOP

A blueprint or template defining the structure (attributes) and behaviour (methods) for a family of objects. Instantiation creates an individual Object from the class definition in memory.

Class Diagram

๐Ÿงฉ OOP ๐Ÿ”„ SDLC

A UML diagram that represents classes, their attributes, methods, and the relationships (inheritance, composition, association) between them. A key deliverable in the Design phase of OOP projects.

Closed Loop System

๐Ÿค– Mechatronics

A control system that uses sensor feedback to continuously adjust its output in real-time. The feedback loop allows the system to self-correct and maintain a desired state despite disturbances.

Code Review

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

A systematic peer examination of source code to find defects, ensure adherence to coding standards, and share knowledge before merging changes into the main codebase.

Cohesion

๐Ÿ“ Programming Fundamentals ๐Ÿงฉ OOP

A measure of how closely related the responsibilities of a single module or class are. High cohesion (single-responsibility) is a hallmark of good design โ€” each unit does one thing well.

Composition

๐Ÿงฉ OOP

A strong "has-a" relationship where parts cannot exist independently of the whole. For example, a Room cannot exist without a Building. Contrasts with aggregation, where parts can exist independently.

Confidentiality

๐Ÿ”’ Secure Architecture

Ensuring that sensitive data is accessible only to authorised entities through encryption and access controls. One of the three pillars of the CIA triad.

Confusion Matrix

โš™๏ธ Software Automation

A table summarising prediction results for a classification model, showing counts of True Positives, True Negatives, False Positives, and False Negatives. Used to calculate metrics like accuracy, precision, and recall.

Constructor

๐Ÿงฉ OOP

A special method (such as __init__ in Python or the class-named method in Java) that initialises an object's state when it is first created. Constructors set default attribute values and perform setup logic.

CORS (Cross-Origin Resource Sharing)

๐ŸŒ Programming for the Web ๐Ÿ”’ Secure Architecture

A browser security mechanism that uses HTTP headers to permit or restrict resource requests from different origins. Prevents malicious websites from making unauthorised API calls on behalf of users.

Coupling

๐Ÿงฉ OOP ๐Ÿ”’ Secure Architecture

The degree of interdependence between software modules. Loose coupling โ€” minimising direct knowledge between modules โ€” improves maintainability, testability, and security isolation.

CSRF (Cross-Site Request Forgery)

๐Ÿ”’ Secure Architecture

An attack that tricks an authenticated user's browser into submitting unwanted requests to another website. Mitigated by anti-CSRF tokens, SameSite cookies, and validating the request origin.

CSS (Cascading Style Sheets)

๐ŸŒ Programming for the Web

A stylesheet language used to describe the visual presentation and layout of HTML documents. CSS controls colours, fonts, spacing, responsive breakpoints, and animations.

โ†‘ Back to Top
D

DAST (Dynamic Application Security Testing)

๐Ÿ”’ Secure Architecture โš™๏ธ Software Automation

Security testing performed against a running application from the outside โ€” simulating the perspective of an attacker. Identifies vulnerabilities such as SQL injection and XSS at runtime.

Data Dictionary

๐Ÿ“ Programming Fundamentals ๐Ÿ“‹ SE Project

A metadata tool that documents every variable's name, data type, size, description, and validation rules. Essential for the Design and Implementation phases of the SDLC.

Decision Tree

โš™๏ธ Software Automation

A visual machine learning model representing a series of binary questions (decisions) that branch toward a final prediction or classification. Easy to interpret but prone to overfitting on complex data.

Degrees of Freedom (DOF)

๐Ÿค– Mechatronics

The number of independent directions in which a robotic or mechanical system can move. A typical industrial robot arm has 6 DOF โ€” three for position and three for orientation.

Desk Checking

๐Ÿ“ Programming Fundamentals

The process of manually tracing through an algorithm step-by-step with sample data using a trace table to verify correctness before coding. A key NESA examination skill.

DevOps

โš™๏ธ Software Automation

A software development practice that unifies development and operations teams for continuous, reliable delivery. DevOps emphasises automation, monitoring, and collaboration to shorten the development lifecycle.

Digital Signature

๐Ÿ”’ Secure Architecture

A cryptographic mechanism that proves the authenticity and integrity of a message using a sender's private key. Recipients verify the signature using the sender's public key.

DNS (Domain Name System)

๐ŸŒ Programming for the Web

The system that translates human-readable domain names (e.g., example.com) into machine-readable IP addresses. Often called the "phone book of the internet."

DOM (Document Object Model)

๐ŸŒ Programming for the Web

A tree-structured programming interface representing an HTML document. JavaScript can traverse and manipulate the DOM to dynamically update page content, structure, and style without a full page reload.

โ†‘ Back to Top
E

Encapsulation

๐Ÿงฉ OOP

The bundling of data (attributes) and the methods operating on that data within a single unit (class). Access modifiers (public, private, protected) control visibility, preventing unintended external interference.

โ†‘ Back to Top
F

Facade Pattern

๐Ÿงฉ OOP

A design pattern providing a simplified interface to a complex set of classes, hiding underlying complexity. Example: a payment gateway's facade hides the details of multiple payment processors.

Feasibility Analysis

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

An assessment of whether a project is viable across scheduling, financial, technical, and operational dimensions. Conducted during the Planning phase to determine project go/no-go decisions.

Flowchart

๐Ÿ“ Programming Fundamentals ๐Ÿ”„ SDLC

A visual diagram using standardised symbols (oval for start/end, rectangle for process, diamond for decision) connected by arrows to represent the flow of logic through an algorithm.

Front-end Framework

๐ŸŒ Programming for the Web

Pre-built software environments (like React, Vue, or Angular) providing a structured approach to building browser user interfaces with reusable components, state management, and routing.

Finite State Machine (FSM)

๐Ÿ“ Programming Fundamentals ๐Ÿค– Mechatronics

A computational model with a finite set of states, defined transitions triggered by inputs or events, and associated actions. FSMs are fundamental to modelling embedded systems, protocols, and UI logic.

Functional Requirements

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

Descriptions of the specific behaviors, features, and functions that a software system must provide. They define *what* the system should do.

โ†‘ Back to Top
G

Gantt Chart

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

A horizontal bar chart used to visualise project schedules, task durations, and dependencies over time. A key tool during the Planning phase of the SDLC.

Generalisation

๐Ÿงฉ OOP

The engineering process of identifying common traits among multiple classes and moving them into a shared parent class. Improves code reuse and design clarity.

GUI (Graphical User Interface)

๐ŸŒ Programming for the Web ๐Ÿ”„ SDLC

An interface allowing users to interact with software through visual elements (buttons, menus, icons) rather than text commands. GUI design is evaluated against usability heuristics.

โ†‘ Back to Top
H

Hashing

๐Ÿ”’ Secure Architecture

A one-way mathematical function that produces a fixed-length fingerprint of data. Used for secure password storage, data integrity verification, and digital signatures. Cryptographic hash functions (SHA-256, bcrypt) ensure that even identical inputs produce consistent outputs, but the original data cannot be recovered.

Headless CMS

๐ŸŒ Programming for the Web

A back-end-only content management system that stores and delivers content via API, decoupled from any front-end presentation layer. Allows content to be rendered on any platform or framework.

H-Bridge

๐Ÿค– Mechatronics

A circuit (such as the L298N) that allows a microcontroller to control the speed and direction of a DC motor by switching transistors to forward or reverse current flow.

HTML (HyperText Markup Language)

๐ŸŒ Programming for the Web

The standard markup language used to define the structure and content of web pages using semantic elements like headings, paragraphs, lists, and links.

HTTP (HyperText Transfer Protocol)

๐ŸŒ Programming for the Web

The application-layer protocol used for transferring plain-text content between clients and servers. HTTP is stateless โ€” each request is independent.

HTTPS (HTTP Secure)

๐ŸŒ Programming for the Web ๐Ÿ”’ Secure Architecture

A secure version of HTTP encrypted with TLS/SSL to provide confidentiality and integrity of data in transit. Required for any website handling sensitive user data.

โ†‘ Back to Top
I

I2C (Inter-Integrated Circuit)

๐Ÿค– Mechatronics

A two-wire communication protocol (SDA and SCL) used to connect multiple sensors and displays to a master microcontroller. Supports multiple slave devices on the same bus.

IDE (Integrated Development Environment)

๐Ÿ“ Programming Fundamentals โš™๏ธ Software Automation

A software application providing comprehensive facilities for development, typically including a code editor, build tools, debugger, and integrated version control.

Inheritance

๐Ÿงฉ OOP

A mechanism where a subclass (child) automatically acquires the attributes and methods of a superclass (parent), establishing an "is-a" relationship. Enables code reuse and polymorphism.

Integrity

๐Ÿ”’ Secure Architecture

Guaranteeing that data has not been maliciously or accidentally altered without detection. One of the three pillars of the CIA triad, ensured through hashing and digital signatures.

Interrupt

๐Ÿค– Mechatronics

A signal that causes the CPU to pause its current task and execute a special handler routine (the ISR). Interrupts enable real-time responsiveness to external events without polling.

ISR (Interrupt Service Routine)

๐Ÿค– Mechatronics

A specialised function executed immediately in response to an interrupt signal. Should be short and fast to avoid missing subsequent interrupts.

Iteration

๐Ÿ“ Programming Fundamentals ๐Ÿ”„ SDLC

The repetition of a process or set of instructions. In programming, refers to loops (FOR, WHILE, REPEAT/UNTIL); in management, refers to repeated development cycles in Agile.

โ†‘ Back to Top
J

JavaScript

๐ŸŒ Programming for the Web

A client-side scripting language used to create interactivity and dynamic behaviour on web pages. Enables DOM manipulation, form validation, and asynchronous requests.

JWT (JSON Web Token)

๐Ÿ”’ Secure Architecture ๐ŸŒ Programming for the Web

An open standard for securely transmitting claims between parties as a compact, URL-safe JSON object. Widely used in stateless authentication flows.

โ†‘ Back to Top
K

K-Nearest Neighbour (KNN)

โš™๏ธ Software Automation

An instance-based algorithm that makes predictions based on the labels of the K most similar training examples in feature space. Simple to implement but computationally expensive for large datasets.

โ†‘ Back to Top
L

Linear Regression

โš™๏ธ Software Automation

A supervised algorithm used to predict a continuous numerical value by fitting a straight line (or hyperplane) to the data. Outputs values on a continuous scale rather than discrete classes.

Logic Error

๐Ÿ“ Programming Fundamentals ๐Ÿ”„ SDLC

An error that causes a program to operate incorrectly or produce wrong output without crashing. The code is syntactically correct, but the algorithm or logic is flawed.

Logistic Regression

โš™๏ธ Software Automation

A classification algorithm that outputs the probability (between 0 and 1) of an input belonging to a specific class. Outputs are squashed to a range via the sigmoid function.

โ†‘ Back to Top
M

Maintenance

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

The ongoing SDLC phase involving patching bugs, fixing security issues, and adding new features after software is deployed to production.

Manipulator

๐Ÿค– Mechatronics

The parts of a mechatronic system (such as robotic grippers or arms) that physically interact with objects in the environment.

Manifest

๐ŸŒ Programming for the Web

A JSON file (manifest.json) that defines a PWA's name, icons, theme colours, and installation settings for adding to a user's home screen.

Mechatronics

๐Ÿค– Mechatronics

An interdisciplinary field integrating mechanical, electrical, and software engineering to design intelligent systems, robotics, and embedded devices.

Message-Passing

๐Ÿงฉ OOP

The process by which objects communicate by calling each other's methods. A fundamental concept in OOP describing object interaction.

Method

๐Ÿงฉ OOP

A function or procedure defined within a class that describes the behaviour of its objects. Methods operate on an object's attributes and can modify its state.

Microcontroller

๐Ÿค– Mechatronics

An integrated circuit containing a processor, memory, and I/O peripherals on a single chip, used for real-time control of embedded systems.

Machine Learning (ML)

โš™๏ธ Software Automation

A specific subset of AI where systems automatically learn patterns from data and improve performance over time without being explicitly programmed for every scenario.

MLOps

โš™๏ธ Software Automation

The automated process of designing, training, validating, deploying, and monitoring machine learning models, integrating DevOps principles into the ML lifecycle.

MVC (Model-View-Controller)

๐ŸŒ Programming for the Web

An architectural design pattern separating an application into three independent layers: Model (data & logic), View (UI), and Controller (input handling).

โ†‘ Back to Top
N

Neural Network

โš™๏ธ Software Automation

A computational model inspired by the brain, composed of layers of interconnected artificial neurons that learn to recognise patterns in data through training.

Non-Functional Requirements

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

Requirements that describe *how well* a system should perform, such as security, usability, performance, reliability, and scalability โ€” as opposed to what it should do.

NoSQL Database

๐ŸŒ Programming for the Web

A schema-free database that stores data in flexible formats like JSON documents, key-value pairs, or wide columns, offering scalability and flexibility over strict consistency.

โ†‘ Back to Top
O

Object

๐Ÿงฉ OOP

A specific runtime instance of a class, allocated in memory with its own state (attribute values). Multiple objects can exist from the same class blueprint, each maintaining independent state.

Observer Pattern

๐Ÿงฉ OOP

A design pattern defining a one-to-many dependency so that when one object changes state, its dependents (observers) are automatically notified and updated.

Open Loop System

๐Ÿค– Mechatronics

A simple control system that operates on a fixed sequence or timer without using feedback. No mechanism to adjust output if conditions change.

Overfitting

โš™๏ธ Software Automation

A model error where an algorithm memorises training noise instead of generalising, leading to high accuracy on training data but poor performance on unseen test data.

โ†‘ Back to Top
P

Penetration Testing

๐Ÿ”’ Secure Architecture

Authorised, realistic simulations of cyber attacks by ethical hackers to identify and exploit vulnerabilities. Provides evidence of real-world exploitability unlike SAST/DAST tools.

Peer Review

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

A process where colleagues systematically examine software products (code, documentation) to find defects and ensure adherence to standards before moving to the next stage.

PID Control

๐Ÿค– Mechatronics

A control loop mechanism (Proportional-Integral-Derivative) that adjusts actuator output based on the error between a setpoint and actual state, enabling smooth, responsive control.

Polling

๐Ÿค– Mechatronics

A software technique where the CPU constantly checks a status flag to see if an event has occurred, rather than responding to interrupts. Less efficient than interrupts.

Polymorphism

๐Ÿงฉ OOP

The ability for objects of different types to respond to the same method call in their own type-specific way. Achieved through method overriding (runtime) or overloading (compile-time).

Prototype

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

An early sample or interactive mock-up built to test a concept or elicit stakeholder requirements. Helps visualise the final system before full development.

Pseudocode

๐Ÿ“ Programming Fundamentals ๐Ÿ”„ SDLC

A method of describing algorithm logic using capitalised keywords and indentation to show control structures, without language-specific syntax. NESA specifies a standard format for HSC examinations.

Progressive Web App (PWA)

๐ŸŒ Programming for the Web

A web application built with standard technologies (HTML, CSS, JS) that offers a native-app-like experience, including offline functionality, push notifications, and installability.

PWM (Pulse Width Modulation)

๐Ÿค– Mechatronics

A technique for controlling the average voltage delivered to a component by varying the duty cycle of a square wave. Used to control motor speed and LED brightness.

โ†‘ Back to Top
R

Recursion

๐Ÿ“ Programming Fundamentals

A programming technique where a function calls itself to solve a problem. Each call reduces the problem to a smaller subproblem until a base case is reached.

Reinforcement Learning

โš™๏ธ Software Automation

A machine learning model where an agent learns through trial and error by receiving rewards or penalties from an environment, improving policy over time.

Requirements Elicitation

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

The process of seeking and capturing requirements of a system from users and stakeholders through interviews, surveys, focus groups, and observation.

REST (Representational State Transfer)

๐ŸŒ Programming for the Web

An architectural style for designing networked APIs using standard HTTP methods (GET, POST, PUT, DELETE) and stateless communication. The dominant approach for modern web services.

Runtime Error

๐Ÿ“ Programming Fundamentals

An error that occurs while a program is running, often causing it to crash due to impossible operations like division by zero or accessing an out-of-bounds array index.

โ†‘ Back to Top
S

SAST (Static Application Security Testing)

๐Ÿ”’ Secure Architecture โš™๏ธ Software Automation

Security testing conducted on source code, bytecode, or binaries without executing the application (white-box testing). Identifies vulnerabilities early in the SDLC.

Scrum

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

A lightweight Agile framework organising development into fixed-length iterations called Sprints (typically 2โ€“4 weeks). Defines roles and ceremonies for iterative delivery.

SDLC (Software Development Life Cycle)

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

The structured set of cyclical phases used to plan, design, develop, test, and deliver software. NESA defines four key phases: Defining & Understanding, Planning & Designing, Producing & Implementing, and Testing & Evaluating.

Selection

๐Ÿ“ Programming Fundamentals

A control structure that evaluates a condition to choose between different execution paths using IF/ELSE or CASE statements.

Semi-Supervised Learning

โš™๏ธ Software Automation

A machine learning model that uses a small amount of labelled data combined with a large pool of unlabelled data to improve learning efficiency.

Sensor

๐Ÿค– Mechatronics

An input device that converts physical properties (light, temperature, motion, distance) into electrical signals for a microcontroller to process.

Sequence

๐Ÿ“ Programming Fundamentals

A control structure where instructions are executed in order, one after another, as they are written.

Service Worker

๐ŸŒ Programming for the Web

A JavaScript file that runs in the background to handle caching, push notifications, and offline functionality in Progressive Web Apps.

Servo Motor

๐Ÿค– Mechatronics

A motor that provides precise angular control, typically using a PWM signal to set a position between 0 and 180 degrees. Includes built-in feedback control.

Singleton Pattern

๐Ÿงฉ OOP

A design pattern that ensures a class has only one instance and provides a global access point to it. Used for shared resources like database connections.

SPI (Serial Peripheral Interface)

๐Ÿค– Mechatronics

A high-speed, four-wire communication protocol (MOSI, MISO, CLK, CS) used for devices like SD cards and ADCs. Faster than I2C but requires more wires.

SQL (Relational) Database

๐ŸŒ Programming for the Web

A database that stores data in structured tables with rows and columns, enforcing relationships between tables using primary and foreign keys.

SQL Injection

๐Ÿ”’ Secure Architecture

A vulnerability where malicious SQL statements are inserted into input fields and executed by the database. Prevented via parameterised queries and input validation.

Storyboard

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

A sequence of visual layouts used in the Design phase to show the user's journey through a system, screen by screen.

Stepper Motor

๐Ÿค– Mechatronics

A motor that moves in discrete, precise steps rather than continuously, ideal for positioning tasks in 3D printers and CNC machines.

STRIDE

๐Ÿ”’ Secure Architecture

A threat modelling framework identifying security risks: Spoofing, Tampering, Repudiation, Information Disclosure, Denial of Service, and Elevation of Privilege.

Structure Chart

๐Ÿ”„ SDLC ๐Ÿงฉ OOP

A hierarchical tool showing how a system is divided into modules, functions within those modules, and their relationships. Used extensively in the Design phase.

Supervised Learning

โš™๏ธ Software Automation

A machine learning model trained on a labelled dataset where both inputs and correct outputs are provided, enabling the model to learn the mapping between them.

Symmetric Encryption

๐Ÿ”’ Secure Architecture

A fast encryption method (like AES-256) where the same key is used for both encryption and decryption. Fast but requires secure key distribution.

Syntax Error

๐Ÿ“ Programming Fundamentals

A violation of a programming language's grammar rules that prevents the code from running. Usually flagged by the IDE during compilation.

โ†‘ Back to Top
T

Test Set

โš™๏ธ Software Automation

Data held back entirely until final evaluation to provide an unbiased estimate of real-world model performance. Should never be used during development or hyperparameter tuning.

TLS (Transport Layer Security)

๐Ÿ”’ Secure Architecture ๐ŸŒ Programming for the Web

A modern cryptographic protocol that provides secure, encrypted communication over a network. The successor to SSL, used by HTTPS to secure web traffic.

Training Set

โš™๏ธ Software Automation

The portion of a dataset (typically 70โ€“80%) used by an algorithm to learn patterns and adjust weights. The model sees these examples repeatedly during training.

Two's Complement

๐Ÿ“ Programming Fundamentals

The standard method for representing negative integers in binary by inverting the bits of the positive equivalent and adding one. Enables efficient arithmetic on signed numbers.

โ†‘ Back to Top
U

UART (Universal Asynchronous Receiver-Transmitter)

๐Ÿค– Mechatronics

A two-wire serial protocol (TX and RX) that requires no clock signal, used for serial communication between microcontrollers and computers.

UML (Unified Modeling Language)

๐Ÿ”„ SDLC ๐Ÿงฉ OOP ๐Ÿ“‹ SE Project

A standardised visual language for specifying, visualising, constructing, and documenting software systems. HSC-relevant diagrams include Class, Use Case, Sequence, and Activity Diagrams.

Underfitting

โš™๏ธ Software Automation

A model error where the algorithm is too simple to learn the underlying patterns in training data, resulting in poor performance on both training and test sets.

Unit Testing

๐Ÿ”„ SDLC โš™๏ธ Software Automation

The practice of testing individual units (functions, methods, classes) in isolation to verify correct behaviour. Foundation of automated test suites and CI/CD.

Unsupervised Learning

โš™๏ธ Software Automation

A machine learning model that analyses unlabelled data to find hidden patterns or groupings autonomously, without being told what the correct output should be.

User Acceptance Testing (UAT)

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

The final testing phase where actual users test the software in real-world scenarios to ensure it meets requirements and is ready for production deployment.

Use Case Diagram

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

A UML diagram representing interactions between users (actors) and the system to achieve specific goals (use cases). Helps define system scope and requirements.

User Stories

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

Requirement statements written from an end-user's perspective in the format: "As a [role], I want [feature] so that [benefit]." Core to Agile development.

โ†‘ Back to Top
V

Validation Set

โš™๏ธ Software Automation

Data used during development to tune hyperparameters and compare different model configurations. Separate from training data but evaluated during development, unlike the test set.

Variable

๐Ÿ“ Programming Fundamentals

A named location in memory used to store data that can change during program execution. Variables have names, types, and scope.

Version Control (Git)

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

A system that tracks every change to code, allowing developers to revert to previous states, create branches, and collaborate safely. Git is the industry standard.

โ†‘ Back to Top
W

Waterfall

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

A linear, sequential development approach where each phase (requirements, design, implementation, testing) must be completed before the next begins. Best suited for large projects with fixed, well-understood requirements.

Web Accessibility (WCAG)

๐ŸŒ Programming for the Web

International guidelines developed by the W3C to make web content usable for people with various disabilities. Covers visual, hearing, motor, and cognitive disabilities.

Wireframe

๐Ÿ”„ SDLC ๐Ÿ“‹ SE Project

A low-fidelity layout sketch of a single screen showing the placement of UI elements (buttons, text fields, navigation). Created early in Design phase before detailed visual design.

White-Box Testing

๐Ÿ”„ SDLC โš™๏ธ Software Automation

A testing technique where the tester has full knowledge of internal code structure and logic. Designs tests to cover all branches, paths, and conditions โ€” maximising code coverage.

WAGILE

๐Ÿ”„ SDLC

A hybrid of Waterfall and Agile where high-level phases are planned in advance, but internal development is iterative. Pragmatic approach balancing both methodologies.

โ†‘ Back to Top
X

XSS (Cross-Site Scripting)

๐Ÿ”’ Secure Architecture

A vulnerability where an attacker injects malicious client-side scripts into web pages viewed by other users. Caused by improper input validation and output encoding.

โ†‘ Back to Top