Package deal
WGU C170 -WESTERN GOVERNORS UNIVERSITY DATA MANAGEMENT APPLICATIONS EXAM PREPARATION BUNDLE
CONTENTS WGU C EXAMS CORRECTLY SOLVED MARKED AND GRADED A WGU C170 PRACTICE TEST WGU C170 STUDY GUIDE WGU C170 NOTES
[Show more]CONTENTS WGU C EXAMS CORRECTLY SOLVED MARKED AND GRADED A WGU C170 PRACTICE TEST WGU C170 STUDY GUIDE WGU C170 NOTES
[Show more]What is a table? - correct answer A table is a persistent representation of a logical relation that is a relation whose contents can be saved for permanent use. 
 
What are the characteristics of a relational table? - correct answer The characteristics of a relational table are that a table is perce...
Preview 4 out of 33 pages
Add to cartWhat is a table? - correct answer A table is a persistent representation of a logical relation that is a relation whose contents can be saved for permanent use. 
 
What are the characteristics of a relational table? - correct answer The characteristics of a relational table are that a table is perce...
A salesperson is authorized to sell many products and a product can be sold by many salespersons. 
 
Which kind of binary relationship does this scenario describe? 
 
A One-to-one 
B One-to-many 
C One-to-one binary 
D Many-to-many 
D 
Which kind of relationship is displayed in this entity-relations...
Preview 4 out of 91 pages
Add to cartA salesperson is authorized to sell many products and a product can be sold by many salespersons. 
 
Which kind of binary relationship does this scenario describe? 
 
A One-to-one 
B One-to-many 
C One-to-one binary 
D Many-to-many 
D 
Which kind of relationship is displayed in this entity-relations...
Domain 
In data modeling, the construct used to organize and describe an attribute's set of possible values. 
Primary key (PK) 
An identifier composed of one or more attributes that uniquely identifies a row. Also, a candidate key selected as a unique entity identifier. A minimal superkey. 
Key 
On...
Preview 3 out of 22 pages
Add to cartDomain 
In data modeling, the construct used to organize and describe an attribute's set of possible values. 
Primary key (PK) 
An identifier composed of one or more attributes that uniquely identifies a row. Also, a candidate key selected as a unique entity identifier. A minimal superkey. 
Key 
On...
domain - correct answer In data modeling, the construct used to organize and describe an attribute's set of possible values 
 
superkey - correct answer An attribute or attributes that uniquely identify each entity in a table. Any composite key with this is also this. 
 
candidate key - correct ans...
Preview 2 out of 7 pages
Add to cartdomain - correct answer In data modeling, the construct used to organize and describe an attribute's set of possible values 
 
superkey - correct answer An attribute or attributes that uniquely identify each entity in a table. Any composite key with this is also this. 
 
candidate key - correct ans...
domain - correct answer In data modeling, the construct used to organize and describe an attribute's set of possible values 
 
superkey - correct answer An attribute or attributes that uniquely identify each entity in a table. Any composite key with this is also this. 
 
candidate key - correct ans...
Preview 1 out of 3 pages
Add to cartdomain - correct answer In data modeling, the construct used to organize and describe an attribute's set of possible values 
 
superkey - correct answer An attribute or attributes that uniquely identify each entity in a table. Any composite key with this is also this. 
 
candidate key - correct ans...
Create Database Syntax - correct answer CREATE DATABASE db_name; 
 
Simple SFW query syntax - correct answer SELECT * FROM db_name WHERE column_name operator value; 
 
Cardinality: Inside or outside? - correct answer Outside 
 
Modality: Inside or outside? - correct answer Inside 
 
What commands ar...
Preview 1 out of 2 pages
Add to cartCreate Database Syntax - correct answer CREATE DATABASE db_name; 
 
Simple SFW query syntax - correct answer SELECT * FROM db_name WHERE column_name operator value; 
 
Cardinality: Inside or outside? - correct answer Outside 
 
Modality: Inside or outside? - correct answer Inside 
 
What commands ar...
Create Database Syntax - correct answer CREATE DATABASE db_name; 
 
Simple SFW query syntax - correct answer SELECT * FROM db_name WHERE column_name operator value; 
 
Cardinality: Inside or outside? - correct answer Outside 
 
Modality: Inside or outside? - correct answer Inside 
 
What commands ar...
Preview 1 out of 2 pages
Add to cartCreate Database Syntax - correct answer CREATE DATABASE db_name; 
 
Simple SFW query syntax - correct answer SELECT * FROM db_name WHERE column_name operator value; 
 
Cardinality: Inside or outside? - correct answer Outside 
 
Modality: Inside or outside? - correct answer Inside 
 
What commands ar...
Add New Row - correct answer INSERT INTO table_name (column1, column2, ...) 
VALUES (value1, value2, value3, ...); 
 
Update Row - correct answer UPDATE table_name 
SET column1 = value1, column2 = value2, ... 
WHERE condition; 
 
Delete Row - correct answer DELETE FROM table_name 
WHERE condition; ...
Preview 1 out of 2 pages
Add to cartAdd New Row - correct answer INSERT INTO table_name (column1, column2, ...) 
VALUES (value1, value2, value3, ...); 
 
Update Row - correct answer UPDATE table_name 
SET column1 = value1, column2 = value2, ... 
WHERE condition; 
 
Delete Row - correct answer DELETE FROM table_name 
WHERE condition; ...
A salesperson is authorized to sell many products and a product can be sold by many salespersons. 
 
Which kind of binary relationship does this scenario describe? - correct answer Many-to-many 
 
Refer to Diagram #2 
 
Which kind of relationship is displayed in this entity-relationship diagram? - c...
Preview 2 out of 13 pages
Add to cartA salesperson is authorized to sell many products and a product can be sold by many salespersons. 
 
Which kind of binary relationship does this scenario describe? - correct answer Many-to-many 
 
Refer to Diagram #2 
 
Which kind of relationship is displayed in this entity-relationship diagram? - c...
Access plan - correct answer A set of instructions generated at application compilation time that is created and managed by a DBMS. The access plan predetermines how an application's query will access the database at run time. 
 
Alias - correct answer An alternative name for a column or table in a...
Preview 2 out of 15 pages
Add to cartAccess plan - correct answer A set of instructions generated at application compilation time that is created and managed by a DBMS. The access plan predetermines how an application's query will access the database at run time. 
 
Alias - correct answer An alternative name for a column or table in a...
A salesperson is authorized to sell many products and a product can be sold by many salespersons. 
 
Which kind of binary relationship does this scenario describe? 
 
One-to-one 
One-to-many 
Many-to-many 
One-to-one binary - correct answer Many-to-many 
 
Which two examples are attributes? 
 
...
Preview 3 out of 22 pages
Add to cartA salesperson is authorized to sell many products and a product can be sold by many salespersons. 
 
Which kind of binary relationship does this scenario describe? 
 
One-to-one 
One-to-many 
Many-to-many 
One-to-one binary - correct answer Many-to-many 
 
Which two examples are attributes? 
 
...
If integer values are relatively small, what should be used instead of INT? - correct answer SMALLINT 
 
What is the SQL command that allows a user to list the contents of a table? - correct answer SELECT 
 
What is the process the DBMS uses to verify that only registered users access the database? ...
Preview 1 out of 3 pages
Add to cartIf integer values are relatively small, what should be used instead of INT? - correct answer SMALLINT 
 
What is the SQL command that allows a user to list the contents of a table? - correct answer SELECT 
 
What is the process the DBMS uses to verify that only registered users access the database? ...
A database model - correct answer is a conceptual framework for database software 
 
The relational model - correct answer is a database model based on mathematical principles, with three parts: 
1. A data structure that prescribes how data is organized. 
2. Operations that manipulate data structure...
Preview 2 out of 13 pages
Add to cartA database model - correct answer is a conceptual framework for database software 
 
The relational model - correct answer is a database model based on mathematical principles, with three parts: 
1. A data structure that prescribes how data is organized. 
2. Operations that manipulate data structure...
The order of the rows and columns is important to the DBMS. 
 
True or False - correct answer False 
 
PRODUCT yields all possible pairs of rows from two tables, also known as the _______ product. - correct answer Cartesian 
 
According to Codd's ______ rule of relation database, "Application pro...
Preview 4 out of 46 pages
Add to cartThe order of the rows and columns is important to the DBMS. 
 
True or False - correct answer False 
 
PRODUCT yields all possible pairs of rows from two tables, also known as the _______ product. - correct answer Cartesian 
 
According to Codd's ______ rule of relation database, "Application pro...
AREA - correct answer In DB2, a named section of permanent storage space that is reserved to store the database. 
 
associative entity - correct answer See composite entity. 
 
bridge entity - correct answer See composite entity. 
 
candidate key - correct answer A minimal superkey; that is, a key t...
Preview 4 out of 37 pages
Add to cartAREA - correct answer In DB2, a named section of permanent storage space that is reserved to store the database. 
 
associative entity - correct answer See composite entity. 
 
bridge entity - correct answer See composite entity. 
 
candidate key - correct answer A minimal superkey; that is, a key t...
CREATE TABLE syntax 
DDL - correct answer CREATE TABLE tableName ( 
colName dataType constraint 
INDEX indexName (colName) 
PRIMARY KEY (colName, colName) 
or 
colName dataType PRIMARY KEY 
FOREIGN KEY (colName, colName) 
REFERENCES tableName (colName) 
); 
 
CREATE INDEX syntax 
DDL - correct answ...
Preview 1 out of 4 pages
Add to cartCREATE TABLE syntax 
DDL - correct answer CREATE TABLE tableName ( 
colName dataType constraint 
INDEX indexName (colName) 
PRIMARY KEY (colName, colName) 
or 
colName dataType PRIMARY KEY 
FOREIGN KEY (colName, colName) 
REFERENCES tableName (colName) 
); 
 
CREATE INDEX syntax 
DDL - correct answ...
1.1.1 - Conceptual Schema - ER Model 
 
Tables: Customer, DonutOrder, Donut - correct answer Customer: 
PK - CustomerID 
Rest are customer related fields 
 
DonutOrder: 
FK - CustomerID, 
FK - DonutID 
Qty, SpecialNotes 
 
Donut: 
PK - DonutID 
Rest are donut fields 
 
Relationships: 
Customer - 1:n...
Preview 2 out of 6 pages
Add to cart1.1.1 - Conceptual Schema - ER Model 
 
Tables: Customer, DonutOrder, Donut - correct answer Customer: 
PK - CustomerID 
Rest are customer related fields 
 
DonutOrder: 
FK - CustomerID, 
FK - DonutID 
Qty, SpecialNotes 
 
Donut: 
PK - DonutID 
Rest are donut fields 
 
Relationships: 
Customer - 1:n...
A salesperson is authorized to sell many products and a product can be sold by many salespersons. 
Which kind of binary relationship does this scenario describe? - correct answer Many-to-many 
 
Which two examples are attributes? - correct answer An employee number 
A meeting code 
 
Which delete ru...
Preview 4 out of 53 pages
Add to cartA salesperson is authorized to sell many products and a product can be sold by many salespersons. 
Which kind of binary relationship does this scenario describe? - correct answer Many-to-many 
 
Which two examples are attributes? - correct answer An employee number 
A meeting code 
 
Which delete ru...
Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.
You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.
Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.
Stuvia is a marketplace, so you are not buying this document from us, but from seller StarScoreGrades. Stuvia facilitates payment to the seller.
No, you only buy these notes for $20.69. You're not tied to anything after your purchase.
4.6 stars on Google & Trustpilot (+1000 reviews)
78998 documents were sold in the last 30 days
Founded in 2010, the go-to place to buy study notes for 14 years now