Chapter 1 - 5 Revision Flashcards

1
Q

List all the levels in which data quality can be examined.

A

Data Accuracy
Data relevancy
Data Completeness
Data Timeliness
Data Uniqueness
Data Unambiguity

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

Define Data governance.

A

Organizational strategy to ensure data quality.

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

What is the purpose of data governance?

A

Manage data availability, usability, quality, integrity, and security.

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

List the advantages of DBMS.

A

Improved data sharing.
Better data integration
Minimized data inconsistency
Improved data access

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

Why is database design important?

A

Poorly designed database generates errors that lead to bad decisions and can lead to the failure of an organization.

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

List the problems with File System Data Management.

A

Long development times.
Extensive programming.
Lack of security
Limited data sharing
Difficulty in getting quick answers

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

Explain data redundancy in detail.

A

data redundancy leads to data inconsistency.
data redundancy also leads to data anamolies.
There are 3 types of data anomalies, namely:
update anamoly - occurs when an inconsistency is introduced as changes are made to existing records.
insert anomaly - occurs when an inconsistency is introduced when entering new records.
deletion anomaly - occurs when an inconsistency is introduced when deleting
records.

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

List the functions of DBMS.

A

Data dictionary management - defines data elements and relationships.
Data storage management - stores data.
Data transformation and presentation - finds data based on your request
Security management - protects data within database.
Backup and recovery management - provides backup and data recovery procedures.
Data integrity management - enforces integrity rules.

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

List the importance of data models.

A

they facilitate interaction among the designer, programmer and user.
they are simple representations of complex real-world data structures.
they organize data for different users

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

What are business rules?

A

Clear policies that define actions within an organization.

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

List the properties of business rules.

A

Business rules must be:
rendered in writing.
kept up-to-date.
easy to understand.
sometimes be external to the organization.

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

List the sources of business rules.

A

Company managers
Policymakers
Department managers
Written documentation
Direct interviews with end-users

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

What is an advantage of the RDBMS?

A

It can hide the complexities of the relational model from the user.

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

What is big data?

A

It is managing large web data for business insights, performance, and scalability at a good cost.

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

List the properties of a relation.

A

A table is a two-dimensional structure with rows and columns.
Each row represents a single entity occurrence, and all rows must be unique.
Each column represents an attribute with a distinct name.
Each cell contains a single atomic value.
All values in a column must be of the same data type.
Each column has a defined range of values, called the domain.
The order of the rows and columns doesn’t matter.
Each table must have a unique identifier for each row.

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

What is a super key?

A

An attribute that uniquely identifies each row.

17
Q

What is a candidate key?

A

A minimal super key.

18
Q

What is a primary key?

A

Unique identifier for each row in a table.

19
Q

What is a secondary key?

A

An attribute used for retrieval purposes.

20
Q

What is a foreign key?

A

Connects tables by referencing another table’s primary key.

21
Q

What is entity integrity?

A

A rule that ensures each row in a table has a primary key.
No duplicates or nulls are allowed.

22
Q

What is referential integrity?

A

A rule that ensures data in one table connects to existing data in another table (foreign key).

23
Q

List some database design challenges.

A

Database design must conform to design standards
High processing speeds are a priority in database design
Timely information is a focus in database design