MidTerm1jeopardyV2 Flashcards

1
Q

The term referring to an item existing in the real world that you want to track in a database is called ________.

A

Entity

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

To be in 3rd Normal Form all non-key attributes must depend on

A

The key, whole key, and nothing but the key (so help me Codd (1970))

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

The term used to describe the characteristics of interest for an entity _____________.

A

Attribute

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

After conceptually designing your database, the information contained in a single entity would be stored in a _________________.

A

Table

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

The attribute (or set of attributes) that uniquely identifies each row in a table is called the ___________________.

A

Primary Key

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

The ability to modify the data structure and not have to change the programs using that data is called _____________________.

A

Data independence

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

Metadata is ________________?

A

data about the data, often in the data dictionary

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

The processing that is done by the DBMS is typically referred to as ________________.

A

back-end processing

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

db2 400

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

Specifying a zero (0) for the minimum cardinality on an ER Diagram indicates that the item is

A

optional

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

—————-db3 100

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

Data integrity can be improved by ____________.

A

incorporating business rules when defining the data

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

Database system modelers use this type of diagram to graphically represent both the data structure and how the different objects are interrelated.

A

ERD or class diagram

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

Business rules are often represented in the database through ________________.

A

relationships

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

What is the special association that indicates that one entity can be broken down into multiple special cases?

A

class/subclass or super-type/sub-type

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

Assume you are creating a database to handle the data associated with instruction at a university. What is the most appropriate special association to model that a course has an assigned instructor, Teaching Assistants, a classroom, meeting time slot, and class roster?

A

n-ary association

17
Q

Referential integrity is _________________?

A

constraint that forces a FK to always point to a PK, allows no orphan datapoint to a PK, allows no orphan data?

18
Q

A table that meets the requirements of a relation is said to be in which normal form?

A

1st Normal Form

19
Q

————-db4 400

A
20
Q

An attribute in one table that is used to create an association with another table by matching the primary key of that table is called a(n)

A

Foreign key

21
Q

Which term defines the highest number of permitted records in a related entity?

A

maximum cardinality

22
Q

A relationship that indicates that one employee can supervise other employees is called a(n) ______________ relationship.

A

recursive or reflexive

23
Q

It is an arbitrary, random key with no business meaning ________________ .

A

surrogate key

24
Q

A relationship that associates data from more than two tables is called a(n) _______________ relationship.

A

n-ary

25
Q

A library has the following business rule: A person may be a patron and not have any books borrowed and a patron may not have more than five books borrowed at any one time. The cardinality to represent this rule on the patron end would be ______________ and on the books borrowed end would by ______________ .

A

0:M and 0:5