IT Induction Flashcards

1
Q

What is a database?

A

A database is a collection of both data and information that is organized in a logical fashion.

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

What is a relational database?

A

A relational database is a database in which data is split into multiple logical tables. These tables are linked together by common values.

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

What is a flat-file database?

A

A flat file database is a database where all data is stored in only one table.

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

What is a record?

A

A record is all the data about a person or object (e.g First Name, Last Name, Address, Income).

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

What is a field?

A

A field is a specific piece of data about a person or object (e.g Last Name).

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

What is a table?

A

A table stores records in a database.

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

What is a primary key?

A

A primary key is a field that is used to uniquely identify a record within a database.

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

What is a simple primary key?

A

A simple primary key is a primary key that is made up of a single field only. (e.g. CustomerID).

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

What is a compound primary key?

A

A compound primary key is a primary key that is made up of multiple fields combined together (e.g. First Name + Last Name + Date of Birth).

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

What is a secondary key?

A

A secondary key is a field that is used to index a table for much faster search results.

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

What is a foreign key?

A

A foreign key is a field in a table that is used to link multiple tables together.

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

What is referential integrity?

A

Every foreign key has a corresponding primary key. Referential intergrity uses this to make sure that there are no parentless records. Referential Integrity also allows for you to be alerted when you are deleting a record which has linked to another record.

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