Practice Test 1 Flashcards

1
Q

Connected fields in a table that complete a row

A

Record

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

dbms does many things like integrity, storage, and security management but it doesnt

A

create data reports

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

An example of unstructured data would be

A

A video but if you had fields describing a video then it could be

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

what is data classified as

A

raw facts. Only processed data can be considered information

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

Intersection data

A

This would be when tables that do not share common fields are connected using fields that they do have in common

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

Unary or Binary

A

Unary is when theres a relationship with the same entity (itself) employee to employee while binary is a relationship between two different entities (student / course)

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

Database Models are….

A

They are conceptual frameworks for database systems

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

Modality

A

Means whether something must participate in the relationship. 1 means yes 0 means no

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

Entity Integrity

A

Requires all primary keys to be unique

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

Referential Integrity

A

Foreign Keys must refer to a valid primary key from another table

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

A table is perceived as…

A

two-dimensional structure

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

another term for relation

A

Table Name

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

Distinct filter

A

modifies presentation of query results

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

Primary Key

A

Always needs to be unique

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

Common Attribute

A

Properties or characteristics shared between two or more tables

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

Allows you to combine information from two or more tables

A

SELECT operation

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

Primary key will appear as a foreign keys in related tables

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

When designing a new database…..

A

you want to reduce data redundancy

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

SuperKey

A

Any numbers of columns that can uniquely identify a row. (ex. Table has Studentid, email, class for columns and the super key could be all 3)

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

Candidate key

A

The least amount of columns that could be used to uniquely identify a row. essentially a simple super key. (ex. Table has Studentid, email, class for columns and StudentId is enough to identify the row then that would be considered a candidate key)

21
Q

Foreign keys must match…..

A

the primary keys value in the related field

22
Q

A Entity Relationship Diagram (ERD)

A

Graphically represents the concepts of a DataBase model

23
Q

Derived attribute

A

This attribute doesnt actually store its data in a table but actually gets it from two or more values in a table/tables. Think of it as a calculated value.

24
Q

Composite Key

A

more than one attribute

24
Q

Relationship is between

A

entities

25
Q

Atomic attribute

A

cannot be subdivided. Ex: Fullname could be divided to first and last but FirstName cant be divided an smaller.

26
Q

Independent Entity

A

Entities that do not depend on any other entity in the model for identification

27
Q

Dependent Entity

A

entity that depends on the foreign key attribute for uniqueness

28
Q

Ternary

A

when 3 or more entities have a relationship

29
Q

Domain

A

set of possible values

30
Q

1N

A

The table only has 1 value or atomic value and their all unique

31
Q

2N

A

all non-key attributes must be fully dependent on the primary key.

32
Q

3N

A

table must be in 2NF, and all attributes must be directly dependent on the primary key, not on other non-key attributes (eliminating transitive dependency).

33
Q

Data reduncy

A

Causes slower lookups

34
Q

Partial dependencies

A

Dependency on only a part of the composite key

35
Q

INSERT

A

Lets you insert Data into a table

36
Q

Update

A

Lets you make changes to data in a table

37
Q

SELECT

A

Lets you select and list all the content of a table

38
Q

Delete

A

Removes a row from the table

39
Q

LIKE

A

Checks for similar character strings

40
Q

DROP

A

Will delete a whole table from the database

41
Q

Full Outer Join

A

Returns rows with matching values and unmatching

42
Q

Extract, transform, load (ETL)

A

used in data warehousing to extract data from various sources, transform it into a format suitable for loading into a data warehouse, and then load it into the warehouse

43
Q

Extract

A

extract data from various sources such as transactional systems, spreadsheets, and flat files

44
Q

Transform

A

extracted data is transformed into a format that is suitable for loading into the data warehouse. This may involve cleaning and validating the data, converting data types, combining data from multiple sources, and creating new data fields

45
Q

Load

A

This step involves creating the physical data structures and loading the data into the warehouse (Important to monitor volume and frequency that data is being loaded into warehouse)

46
Q

Structured Data

A

Standardized format can be processed to generate information

47
Q

Modality

A

Min number of values on one side of the relationship

48
Q
A