8.1 Databases.concepts Flashcards

1
Q

What is a database?

A

A structured collection of data items that can be accessed by different application programs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a relational database?

A

A database where data items are linked by internal pointers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a table in a database?

A

A group of similar data with rows for each instance of an entity and columns for each attribute.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a record in a database?

A

A row in a table representing one instance of an entity.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a field in a database?

A

A column in a table representing an attribute of the entity.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is a tuple in a database?

A

One instance of an entity, represented by a row in a table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is an entity in a database?

A

Anything that can have data stored about it, such as a person, place, event, or thing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is an attribute in a database?

A

An individual data item stored for an entity, like a name, address, or date of birth.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is a candidate key?

A

An attribute or smallest set of attributes where no two tuples have the same value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is a primary key?

A

A unique identifier for a table, which is a special case of a candidate key.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is a secondary key?

A

A candidate key that serves as an alternative to the primary key.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is a foreign key?

A

A set of attributes in one table that refers to the primary key in another table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is a relationship in a database?

A

A situation where a table has a foreign key that refers to a primary key in another table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is referential integrity?

A

A database property ensuring no foreign key values exist without matching the corresponding primary key.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is an index in a database?

A

A data structure built from one or more columns in a table to speed up searching.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is an Entity-Relationship (E-R) model or diagram?

A

A graphical representation of a database and the relationships between entities.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What is normalisation in a database?

A

The process of organising data into two or more tables and relationships to minimise redundancy.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What is First Normal Form (1NF)?

A

A relational database status where entities do not contain repeated groups of attributes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What is Second Normal Form (2NF)?

A

A database in 1NF where non-key attributes depend entirely on the primary key.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

What is Third Normal Form (3NF)?

A

A database in 2NF where all non-key attributes are independent of each other.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

What is a composite key?

A

A set of attributes that together form the primary key to uniquely identify a table record.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

What is a file in computing?

A

A collection of items of data, often structured as records made up of fields containing data about the same ‘thing’.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

What is a data item?

A

An individual element of data within a record or field.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

How does the organisation of records in a program affect data processing?

A

Records can be fixed or variable in length and may contain information about their structure, requiring programs using them to follow the same structure.

25
Q

Why can record structure cause issues in file-based systems?

A

If one program changes the structure, all other programs using the file must be updated; failure to do so can cause data handling errors.

26
Q

What is one limitation of a file-based approach?

A

Storage space is wasted due to data duplication and redundancy.

27
Q

How can data inconsistency arise in a file-based approach?

A

If one application alters data and another does not, the data becomes inconsistent.

28
Q

Why is data independence limited in a file-based approach?

A

Enquiries depend on the data structure and software used, making the data not truly independent.

29
Q

How does the BCS Glossary of Computing define a database?

A

A large collection of data items and links between them, structured for access by different applications programs.

30
Q

How does CJ Date define a database?

A

An electronic filing cabinet allowing tasks like adding, inserting, retrieving, updating, and cross-referencing data.

31
Q

What is a simple definition of a database?

A

A structured collection of data items that can be accessed by different applications programs.

32
Q

How is data typically structured in a database?

A

As a collection of records, where each record contains fields with data about the same ‘thing’.

33
Q

What is a relational database?

A

A database where data items are linked by internal pointers.

34
Q

List one benefit of the database approach regarding storage.

A

Data items are stored only once, reducing redundancy and saving storage space.

35
Q

How does the database approach ensure data consistency?

A

Data altered in one application is automatically available in other applications.

36
Q

Why is data independence a benefit of the database approach?

A

Enquiries do not depend on the data structure or software used, allowing flexibility in data access.

37
Q

What is a table in a relational database?

A

A group of similar data with rows for each entity instance (tuples) and columns for each attribute (fields).

38
Q

What is a record (or tuple) in a relational database?

A

A row in a table representing one instance of an entity.

39
Q

What is a field (or attribute) in a relational database?

A

A column in a table representing a single data item stored for an entity.

40
Q

Define ‘entity’ in the context of a relational database.

A

Anything that can have data stored about it, such as a person, place, event, or object.

41
Q

How is data consistency maintained in a relational database?

A

By controlling or automating updates and minimising duplicate data copies through pointers (keys).

42
Q

What is a candidate key?

A

An attribute or the smallest set of attributes that uniquely identify a tuple in a table.

43
Q

What is a primary key?

A

A unique identifier for a table; it is a special case of a candidate key.

44
Q

What is a secondary key?

A

A candidate key that serves as an alternative to the primary key.

45
Q

What is a foreign key?

A

An attribute in one table that refers to the primary key in another table, creating a relationship.

46
Q

How is a relationship formed in a relational database?

A

When a table contains a foreign key that refers to a primary key in another table.

47
Q

What is referential integrity?

A

Ensuring that every foreign key value in a table matches a primary key value in the referenced table.

48
Q

What are the types of relationships in a relational database?

A

One-to-one (1:1), one-to-many (1:m), many-to-one (m:1), and many-to-many (m:m).

49
Q

What is the purpose of an index in a relational database?

A

To speed up searching for data by creating a data structure from one or more columns in a table.

50
Q

What is the purpose of an Entity-Relationship (E-R) diagram?

A

To provide a visual representation of how entities in a database are related.

51
Q

What does the term ‘cardinality’ mean in an E-R diagram?

A

It defines the type of relationship and whether it is mandatory or optional between entities.

52
Q

Give an example of an optional relationship in an E-R diagram.

A

The relationship between desk and employee is optional (zero or one) since some desks might be unassigned.

53
Q

Give an example of a mandatory relationship in an E-R diagram.

A

The relationship between mother and child is mandatory (one or many) because every mother must have at least one child.

54
Q

What is the purpose of normalisation in database design?

A

To reduce data redundancy and ensure data integrity in a relational database.

55
Q

What happens if a database is not normalised?

A

It will be larger, harder to update, and more difficult to extract data for queries.

56
Q

What is First Normal Form (1NF)?

A

A state where entities do not contain repeated groups of attributes.

57
Q

What is Second Normal Form (2NF)?

A

A state where entities are in 1NF and every non-key attribute depends on the whole primary key with no partial dependencies.

58
Q

What is Third Normal Form (3NF)?

A

A state where entities are in 2NF, and all non-key attributes are independent of each other and only depend on the primary key.

59
Q

What is the key rule for a database in 3NF?

A

All attributes in a table depend upon the key, the whole key, and nothing but the key.