Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Exam (elaborations)

WGU Course C170 - Data Management (Applications)questions with complete solutions

Rating
-
Sold
-
Pages
74
Grade
A+
Uploaded on
20-08-2022
Written in
2022/2023

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-relationship diagram? A Many-to-many unary B Many-to-many binary C One-to-one unary D One-to-one binary A 00:33 01:12 Which kind of relationship is displayed in this entity-relationship diagram? A Binary many-to-many B Unary one-to-one C Ternary many-to-many D Ternary one-to-one D Unary many-to-many E Binary one-to-one B How is this portion of the entity-relationship diagram read, from left to right? A At least one book was written by an author. B Only one book was written by one author. C No books are written by an author. D One book was written by more than one author. A Which two examples are attributes? Choose 2 answers 1 A meeting code 2 A person attending a meeting 3 An employee number 4 A sales meeting A 1,3 B 2,4 A Which delete rule sets column values in a child table to a missing value when the matching data is deleted from the parent table? A Restrict B Cascade C Matching D Set-to-Null D In this entity-relationship diagram, Salesperson 361 is related to two customers. The table follows the restrict delete rule. What happens if someone tries to delete Salesperson 361 from the customer records? A The delete occurs immediately. B The lack of a salesperson is flagged for later. C A new salesperson is assigned instead. D The delete is prohibited. D Refer to the given SQL statement. CREATE TABLE member(member_idINT UNSIGNED NOT NULL AUTO_INCREMENT,PRIMARY KEY (member_id),last_nameVARCHAR(20) NOT NULL,first_nameVARCHAR(20) NOT NULL,suffixVARCHAR(5) NULL,expirationDATE NULL,emailVARCHAR(100) NULL,streetVARCHAR(50) NULL,cityVARCHAR(50) NULL,stateVARCHAR(2) NULL,zipVARCHAR(10) NULL,phoneVARCHAR(20) NULL,interestsVARCHAR(255) NULL); Which two columns are created as something other than variable-length strings in this statement? Choose 2 answers 1 member_id 2 expiration 3 suffix 4 email 5 last name 6 city A 1,2 B 3,4 A This database table has ten different employee numbers in the first column. Employee_ID is the primary key. In addition, it has ten different names in the second column and two office addresses repeated five times each in the third column. Which action should be used to translate this data into third normal form? A Move the data from the third column into the first column. B Move the data from the third column into its own table. C Move the data from the first two columns into separate tables. D Move the data from the second column into the third column. B A database manager starts to convert data that has been normalized into a form that conforms to the relational model. A simple primary key has been established and all the repeating groups have been deleted. In which form is this data? A First normal form B Second normal form C Third normal form D Fourth normal form B Two attributes in two related tables have the exact same domain of values. The attribute is a primary key in one table. Which kind of key is the attribute in the other table? A Compound B Composite C Primary D Foreign D In this entity-relationship diagram, many salespersons are shown as working in at least one office. How is the relationship between salespersons and offices represented in the diagram? A It is linked through the salesperson ID. B It is indicated by the tables' adjacency. C It is undefined. D It is linked through the office ID. D?

Show more Read less
Institution
Course

Content preview

WGU Course C170 - Data Management
(Applications) Quizlet by Brian
MacFarlane
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 - Answer D

Which kind of relationship is displayed in this entity-relationship diagram?

A Many-to-many unary
B Many-to-many binary
C One-to-one unary
D One-to-one binary - Answer A

Which kind of relationship is displayed in this entity-relationship diagram?

A Binary many-to-many
B Unary one-to-one
C Ternary many-to-many
D Ternary one-to-one
D Unary many-to-many
E Binary one-to-one - Answer B

How is this portion of the entity-relationship diagram read, from left to right?

A At least one book was written by an author.
B Only one book was written by one author.
C No books are written by an author.
D One book was written by more than one author. - Answer A

Which two examples are attributes?

Choose 2 answers

1 A meeting code
2 A person attending a meeting

,3 An employee number
4 A sales meeting

A 1,3
B 2,4 - Answer A

Which delete rule sets column values in a child table to a missing value when the
matching data is deleted from the parent table?

A Restrict
B Cascade
C Matching
D Set-to-Null - Answer D

In this entity-relationship diagram, Salesperson 361 is related to two customers. The
table follows the restrict delete rule.

What happens if someone tries to delete Salesperson 361 from the customer records?

A The delete occurs immediately.
B The lack of a salesperson is flagged for later.
C A new salesperson is assigned instead.
D The delete is prohibited. - Answer D

Refer to the given SQL statement.

CREATE TABLE member(member_idINT UNSIGNED NOT NULL
AUTO_INCREMENT,PRIMARY KEY (member_id),last_nameVARCHAR(20) NOT
NULL,first_nameVARCHAR(20) NOT NULL,suffixVARCHAR(5) NULL,expirationDATE
NULL,emailVARCHAR(100) NULL,streetVARCHAR(50) NULL,cityVARCHAR(50)
NULL,stateVARCHAR(2) NULL,zipVARCHAR(10) NULL,phoneVARCHAR(20)
NULL,interestsVARCHAR(255) NULL);

Which two columns are created as something other than variable-length strings in this
statement?

Choose 2 answers

1 member_id
2 expiration
3 suffix
4 email
5 last name
6 city

A 1,2

,B 3,4 - Answer A

This database table has ten different employee numbers in the first column.
Employee_ID is the primary key. In addition, it has ten different names in the second
column and two office addresses repeated five times each in the third column.

Which action should be used to translate this data into third normal form?

A Move the data from the third column into the first column.
B Move the data from the third column into its own table.
C Move the data from the first two columns into separate tables.
D Move the data from the second column into the third column. - Answer B

A database manager starts to convert data that has been normalized into a form that
conforms to the relational model. A simple primary key has been established and all the
repeating groups have been deleted.

In which form is this data?

A First normal form
B Second normal form
C Third normal form
D Fourth normal form - Answer B

Two attributes in two related tables have the exact same domain of values. The attribute
is a primary key in one table.

Which kind of key is the attribute in the other table?

A Compound
B Composite
C Primary
D Foreign - Answer D

In this entity-relationship diagram, many salespersons are shown as working in at least
one office.

How is the relationship between salespersons and offices represented in the diagram?

A It is linked through the salesperson ID.
B It is indicated by the tables' adjacency.
C It is undefined.
D It is linked through the office ID. - Answer D?

Which command creates a database only if it does not already exist?

, A IF NOT EXISTS CREATE DATABASE db_name ;
B CREATE DATABASE IF NEW db_name ;
C IF NOT EXISTS db_name ;
D CREATE DATABASE IF NOT EXISTS db_name ; - Answer A

Refer to the given SQL statement.

SELECT PRODNUM, PRODNAME
FROM PRODUCT

Which line should be added to the end of the statement to return the product numbers
and product names for products that cost 20 dollars?

A WHERE PRODCOST>=20;
B WHERE PRODCOST=20;
C AND PRODCOST=20;
D AND PRODCOST>=20; - Answer B

What does WHERE identify in a basic SQL SELECT statement?

A A table's intersection data
B The associative entity
C A range of included columns
D The rows to be included - Answer D

Refer to the given SQL statement.

SELECT EMPNUM
FROM EMPLOYEE

Which line added to the end of the statement returns employee numbers of at least
1000?

A WHERE EMPNUM > 1000;
B WHERE EMPNUM >= 1000;
C WHERE EMPNUM => 1000;
D WHERE EMPNUM = 1000+; - Answer B

Refer to the given SQL statement.

SELECT PRODNUM, SUM(QUANTITY)
FROM SALESPERSON

Which line, when added to the end of the statement, returns the total number of each
kind of product by product number?

Written for

Course

Document information

Uploaded on
August 20, 2022
Number of pages
74
Written in
2022/2023
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

$21.49
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

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.
EvaTee Phoenix University
Follow You need to be logged in order to follow users or courses
Sold
5202
Member since
4 year
Number of followers
3567
Documents
55578
Last sold
2 hours ago
TIGHT DEADLINE? I CAN HELP

Many students don\'t have the time to work on their academic papers due to balancing with other responsibilities, for example, part-time work. I can relate. kindly don\'t hesitate to contact me, my study guides, notes and exams or test banks, are 100% graded

3.8

947 reviews

5
451
4
167
3
171
2
48
1
110

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 tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

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

Student with book image

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

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions