Exchanging Data- S4 Flashcards

1
Q

Compression

A

reduce the storage space of files on disk.

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

Why is compressing important?

A

Compression is Important when transmitting data as Internet Service Providers often have limits. Images on websites need to be compressed to enable the web site to load quickly to reduce buffering.

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

Lossy compression

A

non-essential information is removed from the original file.

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

Lossless compression

A

retains all information required to replicate the original file exactly.

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

Entity

A

is a category of object, person, event or thing of interest to an organisation about which data is to be recorded. (E.g Employee, Actor, Product).

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

Attribute

A

a property or characteristic of an entity.

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

Flat file database

A

consists of a single file (one entity).

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

Relational database

A

different entities in a system may be linked in some way, and the two entities are said to be related.

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

Primary Key

A

An entity’s unique identifier, normally a numeric ID.

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

Secondary Key

A

An index so that something can be quickly searched up. It would be quicker to search a secondary key like a name than a primary key ID.

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

Index

A

so that a record can be quickly located in the database an index is maintained so that it will give the position of each record. Primary keys and other things that are often searched (secondary keys) are indexed.

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

Foreign Key

A

the attribute that links the two entities/table (attribute that is common in both tables, can be more than one.)

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

Composite Primary Key

A

A primary key which consists of more than one attribute. (used when there is a many to many relationship between entities.)

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

Referral integrity

A

states relationships must be consistent, so when a primary key field changes so does the foreign key that has the link. And ensuring a primary key that is responsible for the link is not deleted

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

Normalisation

A

a process used to come up with the best possible design for a relational database.

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

Give some rules of Normalisation

A

No data is unnecessarily duplicated
Data is consistent throughout the databases.
The structure should be flexible enough to allow you to enter as many or as few items as required
The structure should enable a user to make complex queries relation data from different tables.