WGU C175/d426 Data Management Foundations 2025 UPDATED Final exam study review LATEST EXAM VERSION GRADED A+ | ASSURED SUCCESS

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/49

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

50 Terms

1
New cards

What is a broad definition of data?

Raw facts that are captured on printed or digital media

2
New cards

What are data?

Facts that are collected and stored in a database system

3
New cards

What is a determining characteristic of unstructured data?

It does not follow a data model

4
New cards

Refer to diagram #4

Which item represents unstructured data?

A.

5
New cards

Which is true about flat files?

They contain no internal hierarchical organization

6
New cards

Which technology has no internal hierarchy?

Flat files

7
New cards

How were data retrieved before database management systems?

Sequentially from simple files

8
New cards

What is the uniquely identifiable element about which data can be categorized in an entity-relationship diagram?

Entity types

9
New cards

Refer to diagram #9

Which classification is correct for the box marked "Quantity" in the given entity-relationship diagram?

Intersection data

10
New cards

Which data classification is an entity?

Event

11
New cards

Refer to diagram #11

What is the entity-relationship diagram about a car rental agency showing?

One manufacturer created at least one of the agency's cars

12
New cards

A salesperson is authorized to sell 12 products; a product can be sold by 10 salespersons.

Which kind of binary relationship is described in this example?

Many-to-many

13
New cards

Refer to diagram #13

Which relationship does the cardinality in the diagram represent?

Many customers to many products

14
New cards

Refer to diagram #14

How is the cardinality of the customers misrepresented?

There are many customers, but the cardinality indicates one customer

15
New cards

Refer to diagram #15

What is the correct way to read the modality on the right side of the association?

A minimum of zero customers

16
New cards

Refer to entity-relationship diagram #16

What is the modality of the product?

At least one

17
New cards

Refer to entity-relationship diagram #17

Which kind of relationship does this diagram depict?

Unary one-to-one

18
New cards

Refer to entity-relationship diagram #18

Which kind of relationship does this diagram depict?

Unary many-to-many

19
New cards

Which three kinds of rules for referential integrity are provided by modern relational database management systems?

Choose 3 answers.

1. Insert

2. Delete

3. Update

20
New cards

What is an important aspect of "referential integrity"?

Reference to data in one relation is based on values in another relation

21
New cards

Refer to the given SQL statement.

SELECT SPNUM, SPNAME

FROM SALESPERSON

What is the correct line to add to the end of this statement to find salespersons with a commission percentage of 15?

WHERE COMMPERCT=15;

22
New cards

Refer to the given SQL statement.

SELECT COMMPERCT, YEARHIRE

FROM SALESPERSON

WHERE SPNUM=22;

How should this statement be altered to retrieve the entire record instead of the commission percentage and year of hire?

Replace COMMPERCT, YEARHIRE with an asterisk

23
New cards

A manager asks an employee to list attributes of the customers that are headquartered in Los Angeles and that have a customer number higher than 1000. Refer to the given SQL statement prepared by this employee.

SELECT CUSTNUM, CUSTNAME, HQCITY

FROM CUSTOMER

WHERE HQCITY='Los Angeles'

Which line should go at the end of this statement?

AND CUSTNUM>1000;

24
New cards

What is a key difference between the DISTINCT and ORDER BY statements, in SQL SELECT commands?

ORDER BY modifies the presentation of data results and DISTINCT filters data results

25
New cards

Which SQL statement alphabetizes customer names within the same satellite-office city?

ORDER BY SATCITY, CUSTNAME;

26
New cards

The given SQL statement is intended to list the names of the products of which salesperson Fox has sold more than 500 units.

SELECT PRODNAME

FROM SALESPERSON, SALES, PRODUCT

?

?

AND SPNAME='Fox'

AND QUANTITY>500;

Which set of lines should replace the question marks to make this statement work?

WHERE SALESPERSON.SPNUM=SALES.SPNUM AND SALES.PRODNUM=PRODUCT.PRODNUM

27
New cards

The given SQL statement is intended to query how many books there are with at least 800 pages from publishers in Los Angeles, United States.

SELECT COUNT(*)

?

WHERE PUBLISHER.PUBNAME=BOOK.PUBNAME

AND CITY='Los Angeles'

AND COUNTRY='United States'

AND PAGES>=800;

With which line should the question mark in this statement be replaced?

FROM PUBLISHER, BOOK

28
New cards

Which SQL statement will retrieve rows for all stores in Atlanta or Los Angeles or New York?

SELECT StoreID, City FROM Suppliers

WHERE City IN ('Atlanta', 'Los Angeles', 'New York');

29
New cards

Refer to the given SQL statement to answer the following question:

SELECT *

FROM PRODUCT;

What would this SQL statement accomplish?

List all entries in the PRODUCT table

30
New cards

A product marketing company publishes an Internet-based newsletter about their new products to increase their customer base.

What is an advantage that this company will gain from investing in a relational database management system that will store customer information?

Improved query response times

31
New cards

In which two ways does a database management system environment increase effectiveness in working with data?

Choose 2 answers.

1. It enables data sharing

2. It permits storage of vast volumes of data

32
New cards

Sales data, detailing the customer names, products sold, and salespersons, is kept in a database.

Which kind of data in this database would qualify as intersection data related to both the product and salesperson entities?

Customer names

33
New cards

What is an attribute or group of attributes that uniquely identify a tuple in a relation?

Primary key

34
New cards

What is necessary for a primary key in one relation of a database to match with its corresponding foreign key in another relation of the same database?

A domain of values

35
New cards

What uniquely identifies each entity in a collection of entities but is not the primary key?

The alternate key

36
New cards

What is a term for a set of columns in a table that can uniquely identify any record in that table without referring to other data?

Candidate key

37
New cards

What happens to the original data in database indexing?

It is copied to the index

38
New cards

Why are indexes created in a physical database design?

To retrieve data directly using a pointer

39
New cards

Why is an index created on a database column?

To optimize data retrievals

40
New cards

What is a methodology for organizing attributes into tables?

Data normalization

41
New cards

What is the term for the value of one particular attribute associated with a specific single value of another attribute?

Functional dependency

42
New cards

Refer to the given table.

Project Code Employee No. Employee Name Department No. Department Name Hourly Rate

PC010 S10001 A. Smith L004 IT 22.00

PC010 S10030 L. Jones L023 Pensions 18.50

PC010 S21010 P. Lewis L004 IT 21.00

PC045 S10010 B. Jones L004 IT 21.75

PC045 S10001 A. Smith L004 IT 18.00

PC045 S31002 T. Gilbert L028 Database 25.50

PC045 S13210 W. Richards L008 Salary 17.00

PC064 S31002 T. Gilbert L028 Database 23.25

PC064 S21010 P. Lewis L004 IT 17.50

PC064 S10034 B. James L009 HR 16.50

In which state are the attributes shown?

First normal form

43
New cards

Refer to the given table.

Students

IDSt LastName IDProf Prof Grade

1 Mueller 3 Schmid 5

2 Meier 2 Borner 4

3 Tobler 1 Bernasconi 6

Which factor determines whether the table is in first normal form?

The attributes are all single valued

44
New cards

Refer to the given tables.

ID Contract Code

1 Vinod 091

2 Rajiv 091

Code City Country

091 Bangalore India

The primary key in the first table is ID, and the primary key in the second is Code.

How advanced are the two tables in the normalization process?

Third normal form

45
New cards

Refer to table #45

Which characteristic points to the tables being in third normal form?

The tables are completely free of data redundancy

46
New cards

Which set of results should a company expect from implementing a business intelligence system?

Increased profitability and increased throughput

47
New cards

Which issue is focused on the loading component of extract, transform, load (ETL)?

Monitor refreshing volume and frequency

48
New cards

During which step in the extract, transform, load (ETL) process are raw data sets aggregated?

Transformation

49
New cards

How is prediction distinguished from estimation in data mining?

Prediction classifies objects according to an expected future behavior

50
New cards

Where does affinity grouping occur in data mining?

Between objects