100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.2 TrustPilot
logo-home
Exam (elaborations)

WGU C170 - DATA MANAGEMENT – APPLICATION QUESTIONS WITH THE CORRECT ANSWERS UPDATED

Rating
5.0
(1)
Sold
-
Pages
24
Grade
A+
Uploaded on
12-08-2024
Written in
2024/2025

WGU C170 - DATA MANAGEMENT – APPLICATION QUESTIONS WITH THE CORRECT ANSWERS UPDATED

Institution
WGU C170 - DATA MANAGEMENT
Course
WGU C170 - DATA MANAGEMENT










Whoops! We can’t load your doc right now. Try again or contact support.

Written for

Institution
WGU C170 - DATA MANAGEMENT
Course
WGU C170 - DATA MANAGEMENT

Document information

Uploaded on
August 12, 2024
Number of pages
24
Written in
2024/2025
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

Content preview

WGU C170 - Data Management - Applications
n n n n n n


Studynonlinenatnhttps://quizlet.com/_9s1ftm



WGU C170 - DATA MANAGEMENT – APPLICATION QUESTIONS WITH THE
CORRECT ANSWERS UPDATED




1.Domain: In data modeling, the construct used to organize and descr
n n n n n n n n n n


ibe an attribute's set of possible values.
n n n n n n


2.Primary key (PK): An identifier composed of one or more attributes that u
n n n n n n n n n n n n


niquely identifies a row. Also, a candidate key selected as a unique entity id
n n n n n n n n n n n n n


entifier. A minimal superkey. n n n


3.Key: One or more attributes that determine other attributes.
n n n n n n n n


4.Determination: The role of a key. In the context of a database table, the sta n n n n n n n n n n n n n n


tement "A determines B" indicates that knowing the value of attribute A me
n n n n n n n n n n n n


ans that the value of attribute B can be looked up.
n n n n n n n n n n


5.Determinant: Any attribute in a specific row whose value directly deter n n n n n n n n n n


mines other values in that row.
n n n n n


6.Dependent: An attribute whose value is determined by another attribute.
n n n n n n n n n


7.Full functional dependence: A condition in which an attribute is functio
n n n n n n n n n n


nally dependent on a composite key but not on any subset of the key.
n n n n n n n n n n n n n


8.Composite key: A multiple-attribute key. n n n n


9.Key attributes: The attributes that form a primary key
n n n n n n n n


10.Superkey: An attribute or attributes that uniquely identify each entity in
n n n n n n n n n n


a table. n


11.Candidate key: A minimal superkey; that is, a key that does not contain a
n n n n n n n n n n n n n


nsubset of attributes that is itself a superkey.
n n n n n n n


12.Entity integrity: The property of a relational table that guarantees each
n n n n n n n n n n n


entity has a unique value in a primary key and that the key has no null val
n n n n n n n n n n n n n n n n


ues.
13.Null: The absence of an attribute value.
n n n n n n


14.Foreign key: An attribute or attributes in one table whose values must m
n n n n n n n n n n n n


atch the primary key in another table or whose values must be null.
n n n n n n n n n n n n


15.Referential integrity: A condition by which a dependent table's foreign ke
n n n n n n n n n n



1n/n24

, WGU C170 - Data Management - Applications
n n n n n n


Studynonlinenatnhttps://quizlet.com/_9s1ftm
y must have either a null entry or a matching entry in the related table.
n n n n n n n n n n n n n n


16.Secondary key: A key used strictly for data retrieval purposes. For exa
n n n n n n n n n n n


mple, the combination of last name, first name, middle initial, and teleph
n n n n n n n n n n n


one number will probably match the appropriate table row. Also called an
n n n n n n n n n n n n


alternate key. n


17.Relational algebra: A set of mathematical principles that form the basis f
n n n n n n n n n n n


or ma- n


nipulating relational table contents; the eight main functions are SELECT, P
n n n n n n n n n n n


ROJECT, JOIN, INTERSECT, UNION, DIFFERENCE, PRODUCT, and DIVIDE.
n n n n n n n


18.Relvar: Short for relation variable, a variable that holds a relation. It is a c
n n n n n n n n n n n n n n


ontainer (variable) for holding relation data, not the relation itself.
n n n n n n n n n


19.Closure: A property of relational operators that permits the use of rel
n n n n n n n n n n n


ational algebra operators on existing tables (relations) to produce new r
n n n n n n n n n n


elations.
20.SELECT operator: An operator used to select a subset of rows. Also kno
n n n n n n n n n n n n


wn as RESTRICT.
n n




2n/n24

, WGU C170 - Data Management - Applications
n n n n n n


Studynonlinenatnhttps://quizlet.com/_9s1ftm


Ãcus_code = 10010 n n


21.PROJECT operator: An operator used to select a subset of columns. In ot n n n n n n n n n n n n


her words, it yields a vertical subset of a table. This operation retrieves all r
n n n n n n n n n n n n n n


ows and some attributes of a table without using a WHERE clause
n n s ofto
the tabl
limit w n n n n n n n n n n n n n n n


hich row n e
are included. n




Àcus_fname, cus_lname n


22.UNION operator: This set operator combines the result set of two or
n n n n n n n n n n n n


more SELECT statements, dropping the duplicate rows.
n n n n n n




supplier * vendor n n


23.Union-
compatible: Two or more tables that have the same number of columns an
n n n n n n n n n n n n


d the corresponding columns have compatible domains.
n n n n n n


24.INTERSECT operator: This set operator combines the output of two SEL n n n n n n n n n n


ECT queries and returns only the rows that appear in both.
n n n n n n n n n n




supplier ) vendor n n


25.DIFFERENCE: An operator used to yield all rows from one table that a n n n n n n n n n n n n


re not found in another union-compatible table.
n n n n n n




supplier - vendor n n


26.PRODUCT: An operator used to yield all possible pairs of rows from two t n n n n n n n n n n n n n


ables.

customer × agent n n


27.JOIN: In relational algebra, a type of operator used to yield rows from tw
n n n n n n n n n n n n n


o tables based on criteria. There are many types, such as natural, theta, eq
n n n n n n n n n n n n n


ui, and outer. n n


28.Natural join (JOIN): A relational operation that yields a new table compo
n n n n n n n n n n n


sed of only the rows with common values in their common attribute(s).
n n n n n n n n n n n




customer agent
29.Equijoin: A join operator that links tables based on an equality conditi
n n n n n n n n n n n


on that compares specified columns of the tables. Is a special type of the
n n n n n n n n n n n n n


ta join n


30.Theta join: A join operator that links tables using an inequality comp
n n n n n n n n n n n




3n/n24

Reviews from verified buyers

Showing all reviews
6 months ago

5.0

1 reviews

5
1
4
0
3
0
2
0
1
0
Trustworthy reviews on Stuvia

All reviews are made by real Stuvia users after verified purchases.

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
Edufiles Howard County Community College
View profile
Follow You need to be logged in order to follow users or courses
Sold
100
Member since
1 year
Number of followers
11
Documents
6341
Last sold
2 days ago
EDUFILES STORES

Unlock success with our trusted collection of high-quality exam documents, study guides, and past papers from top universities. Whether you're preparing for midterms, finals, certifications, or professional exams, our expertly curated materials help you study smarter, score higher, and achieve your academic goals faster. Updated regularly and available instantly, our resources are designed to give you the edge you need.

4.9

208 reviews

5
199
4
2
3
1
2
1
1
5

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their exams and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can immediately select a different document that better matches what you need.

Pay how you prefer, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card or EFT and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Frequently asked questions