ICT Year 10 Term 3 Revision Pack - 2025/2026

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/33

flashcard set

Earn XP

Description and Tags

Comprehensive vocabulary flashcards covering System Software, Storage, Networks, Security, Databases, Web Development, and Spreadsheet concepts based on the IGCSE ICT Revision Pack.

Last updated 1:10 PM on 6/29/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

34 Terms

1
New cards

System Software

A category of software that runs the computer itself, including operating systems, utility programs, and device drivers.

2
New cards

Application Software

Software used by the user to complete specific tasks, such as word processors, spreadsheets, databases, and web browsers.

3
New cards

Operating System (OS)

System software that controls hardware, manages files and memory, and provides the user interface.

4
New cards

Utility Programs

Programs that help maintain or manage the system, such as disk defragmenters, anti-virus, file compression, and backup utilities.

5
New cards

Compilers

Programs that translate high-level programming code into machine code (binary) all at once.

6
New cards

Interpreters

Programs that translate and run high-level code line by line, which is slower than compilers but useful for debugging.

7
New cards

Graphical User Interface (GUI)

An interface using Windows, Icons, Menus, and Pointers (WIMP); it is easy for beginners but uses more RAM and processing power.

8
New cards

Command Line Interface (CLI)

An interface where the user types text commands; it is faster for experts and uses fewer resources but requires memorising syntax.

9
New cards

SSD (Solid-State Drive)

A storage device using flash memory with no moving parts; it is highly durable, silent, and offers very fast access times in milliseconds.

10
New cards

HDD (Hard Disk Drive)

A storage device using spinning magnetic platters and read/write heads; it is cheaper per GB and higher in capacity but vulnerable to drops.

11
New cards

Blu-ray Disc Reader

An optical storage device with a capacity of 25GB25\,GB to 100GB100\,GB, used for high-definition video.

12
New cards

Router

A network device that connects two or more networks together (typically a LAN to the internet WAN) by reading destination IP addresses in data packets.

13
New cards

IP (Internet Protocol) Address

A unique identifier for every device on a network, such as 192.168.1.10192.168.1.10 (IPv4) or 2001:db8::12001:db8::1 (IPv6).

14
New cards

Switch

A device that connects devices within a single LAN and forwards data only to the intended recipient using MAC addresses.

15
New cards

Sensors

Devices that measure physical quantities and convert them into electrical signals for a microprocessor to interpret.

16
New cards

Actuator

A component in a control system that receives a signal from the microprocessor to perform an action, such as opening a window or turning on a fan.

17
New cards

Expert System

A computer program designed to mimic the decision-making ability of a human expert, using a knowledge base, rules base, and inference engine.

18
New cards

Inference Engine

The "reasoning" part of an expert system that applies IF-THEN rules to the knowledge base to draw conclusions based on user input.

19
New cards

Direct Changeover

A system implementation method where the old system stops and the new system starts immediately; it is the fastest but riskiest method.

20
New cards

Parallel Running

A changeover method where the old and new systems run side-by-side for a period to allow for verification; it is the safest but most expensive method.

21
New cards

Pilot Running

A changeover method where the new system is introduced in one branch or department first before being rolled out elsewhere.

22
New cards

Phishing

An attack where fake emails impersonate a trusted organisation to trick users into clicking links and entering credentials on fake websites.

23
New cards

Pharming

A cyberattack where malicious code poisons a DNS server to automatically redirect users to fake websites, even if the correct URL is typed.

24
New cards

Lossy Compression

A method of reducing file size by permanently removing some data; used for formats like .jpg.jpg and .mp3.mp3 where small size is prioritised over perfect quality.

25
New cards

Validation

Automatic checks performed by the computer to ensure data is sensible, reasonable, or within acceptable limits.

26
New cards

Verification

Methods to check that data has been entered correctly without typos, such as double entry or visual checks.

27
New cards

Primary Key

A field that uniquely identifies each record in a database table; no two records can have the same primary key.

28
New cards

Foreign Key

A field in one database table that refers to the primary key of another table, used to link the two tables together.

29
New cards

Formula

A calculation in a spreadsheet written by the user themselves using cell references and operators, always starting with an equals sign (==).

30
New cards

Function

A built-in calculation defined in spreadsheet software, such as =SUM(A1:A10)=SUM(A1:A10) or =IF(F2>50,"Pass","Fail")=IF(F2>50,\text{"Pass"},\text{"Fail"}).

31
New cards

HTML (HyperText Markup Language)

The web development layer responsible for content and structure, including headings, paragraphs, images, and links.

32
New cards

CSS (Cascading Style Sheets)

The presentation layer of web development that controls the look of the page, including colours, fonts, and layout.

33
New cards

JavaScript

The behaviour layer of web development that adds interactivity, such as responsive buttons and form validation.

34
New cards

Absolute Reference

A cell reference in a spreadsheet that does not change when copied, using dollar signs to lock the row and/or column, such as =$A$1=\$A\$1.