Unit 4 - Module 7 Flashcards

1
Q

flat-file

A

File structure that does not support the integration of data.

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

Flat-File Data Management

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

data attribute

A

The most elemental piece of potentially useful data in the database.

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

data redundancy

A

State of data elements being represented in all user files.

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

The Database Concept

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

hierarchical model

A

Database model that represents data in a hierarchical structure and permits only a single parent record for each child record.

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

users

A

Individuals who employ systems, receive information, and act on the information received.

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

relational model

A

Data model that is more flexible than traditional navigational models. It allows users to create new and unique paths through the database to solve a wide range of business problems.

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

navigational models

A

Model that possesses explicit links or paths among data elements.

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

internal view

A

Physical arrangement of records in the database.

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

Elements of the Database Concept

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

Data definition language (DDL)

A

Programming language used to define the database to the database management system.

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

Overview of DBMS Operation

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

schema

A

Description of the entire database.

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

user view

A

Set of data that a particular user needs to achieve his or her assigned tasks.

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

Data manipulation language (DML)

A

Language used to insert special database commands into application programs written in conventional languages.

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

indexed sequential file

A

Sequential file structure accessed via an index.

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

database administrator (DBA)

A

Individual responsible for managing the database resource.

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

Functions of the Database Administrator

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

Organizational Interactions of the Database Administrator

A
21
Q

data dictionary

A

Description of every data element in the database.

22
Q

physical database

A

Lowest level of the database containing magnetic spots on magnetic disks.

23
Q

top-down approach

A

It requires a detailed analysis of the organization’s information needs.

24
Q

bottom-up approach

A

The client organization’s database developers may modify the model to suit the company’s specific needs.

25
Q

entity

A

Resource, event, or agent.

26
Q

entity-level

A

This is a high-level perspective of the overall schema, which presents only the key entities and their relationships and it does not show the data types and keys contained within the entities.

27
Q

relation

A

It describes how data in one entity are related to data in another entity.

28
Q

occurrence

A

Used to describe the number of instances or records that pertain to a specific entity.

29
Q

association

A

Relationship among record types.

30
Q

tuple

A

It is the formal name for a row in the table.

31
Q

primary key

A

Characteristics that uniquely identify each record in the tables.

32
Q

foreign keys

A

Key that permits the physical connection of logically related tables to achieve the associations described in the data model.

33
Q

anomalies

A

Negative operational symptoms caused by improperly normalized tables.

34
Q

first normal form (1NF)

A

Low degree of normalization of relational database tables.

35
Q

second normal form (2NF)

A

Table that is free of both repeating group and partial dependencies.

36
Q

third normal form (3NF)

A

Normalization that occurs by dividing an unnormalized database into smaller tables until all attributes in the resulting tables are uniquely and wholly dependent on (explained by) the primary key.

37
Q

update anomaly

A

Unintentional updating of data in a table, resulting from data redundancy.

38
Q

insertion anomaly

A

Unintentional insertion of data into a table.

39
Q

deletion anomaly

A

Unintentional deletion of data from a table.

40
Q

repeating groups

A

It occurs when multiple values for a particular attribute exist in a specific tuple.

41
Q

partial dependencies

A

Occurs when one or more nonkey attributes are dependent on (defined by) only part of the primary key rather than the whole key.

42
Q

transitive dependencies

A

A transitive dependency occurs in a table where nonkey attributes are dependent on another nonkey attribute and independent of the table’s primary key.

43
Q

Steps in the Normalization Process

A
44
Q

Which of the following is a problem usually associated with the flat-file approach to data management?

direct access to information
restricting data access to the primary user
timeliness of updates
data redundancy
A

data redundancy

The correct answer is “data redundancy.” Data redundancy is a problem with the flat-file approach. Excel spreadsheets are an example of a flat file database. There is no simple way to determine if a particular data item is already in the spreadsheet, especially as the spreadsheet grows.

45
Q

Which problem is characteristically associated with the flat-file approach to data management?

the inability to determine what data is available
the inability to produce constant backups
the inability to process data without the help of a programmer
the inability to control access to the data
A

the inability to determine what data is available

The correct answer is “the inability to determine what data is available.” The inability to determine what data is available is a characteristic problem with flat-file data management. The only way to determine if data is available in the file is to sequentially read through the entire file from beginning to end, or until the desired data is encountered.

46
Q

A description of the physical arrangement of records in the database is

the external view.
the internal view.
the conceptual view.
the subschema.
A

the internal view.

The correct answer is “the internal view.” The description of the physical arrangement of records is the internal view. The internal view shows the way that the data is organized in the database. This is also known as the hierarchical view.

47
Q

Which of the following may provide many distinct views of the database?

the user view
the internal view
the conceptual view
the schema
A

the user view

The correct answer is “the user view.” The user view provides many distinct views of the database. The user view (subschema) shows the segment of the database that the user can access. This access will vary by user as their requirements vary by business function.

48
Q

The update anomaly in unnormalized tables

occurs because of data redundancy.
often results in excessive record insertions.
may result in the loss of important data.
complicates adding records to the database.
A

occurs because of data redundancy.

The correct answer is “occurs because of data redundancy.” The update anomaly occurs because of data redundancy in unnormalized tables. Because data can appear multiple times in an unnormalized database, it is difficult to ensure that all occurrences get updated when a change occurs. This problem becomes much worse as the database grows in size.

49
Q

The deletion anomaly in unnormalized tables

requires the user to perform excessive updates.
may result in the loss of important data.
complicates adding records to the database.
is easily detected by users.
A

may result in the loss of important data.

The correct answer is “may result in the loss of important data.” The deletion anomaly may result in the loss of important data. The deletion anomaly arises when data is inadvertently deleted from the table, resulting in the loss of important data