Leaving Cert Computer Science — Databases

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

1/18

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering the core concepts, data types, and structures of computer science databases.

Last updated 6:21 PM on 5/12/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

19 Terms

1
New cards

Database

An electronic system used to store, retrieve and manipulate data.

2
New cards

File Processing Systems

Information storage systems where data was kept in individual files before the advent of databases.

3
New cards

Data Independence

A characteristic that allows the underlying data structure to change without changing the programs using it.

4
New cards

Database Management System (DBMS)

Software used to create and manage databases, such as MySQL, Oracle, or Microsoft Access.

5
New cards

Redundancy

The unnecessary duplication of data within a system.

6
New cards

VARCHAR

A data type used to store text, letters, numbers, and special characters.

7
New cards

NUMBER

A data type specifically for storing numbers used in calculations.

8
New cards

BOOLEAN

A data type used to store TRUE/FALSE or YES/NO values.

9
New cards

DATE/TIMESTAMP

A data type used for storing dates and times.

10
New cards

BLOB

A data type used for storing large files such as images, audio, or videos.

11
New cards

Flat File Database

A database that stores data in a single table or spreadsheet, such as a CSV file.

12
New cards

Fields

The columns in a database table structure.

13
New cards

Records

The rows in a database table structure.

14
New cards

Relational Database

A database that contains multiple related tables linked together.

15
New cards

Data Integrity

The consistency and accuracy of data throughout its lifecycle.

16
New cards

Integrity Constraints

Rules used to ensure data remains valid, such as requiring unique student numbers.

17
New cards

Concurrency Control

The management of multiple users accessing and interacting with data at the same time.

18
New cards

Primary Key

A field that uniquely identifies each record in a table and cannot be empty.

19
New cards

Foreign Key

A field used to link tables together by referencing a primary key from another table.