Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

WGU C170 Data Management Applications (over 400 Questions And Answers Latest Update 2023), Exams of Economics

WGU C170 Data Management Applications (over 400 Questions And Answers Latest Update 2023)

Typology: Exams

2022/2023

Available from 10/20/2023

dillon-cole
dillon-cole 🇺🇸

4.3

(6)

1.9K documents

1 / 118

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
WGU C170 Data Management Applications
(over 400 Questions And Answers Latest
Update 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 - correct 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 - correct answer A
Which kind of relationship is displayed in this entity-relationship diagram?
A Binary many-to-many
B Unary one-to-one
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe
pff
pf12
pf13
pf14
pf15
pf16
pf17
pf18
pf19
pf1a
pf1b
pf1c
pf1d
pf1e
pf1f
pf20
pf21
pf22
pf23
pf24
pf25
pf26
pf27
pf28
pf29
pf2a
pf2b
pf2c
pf2d
pf2e
pf2f
pf30
pf31
pf32
pf33
pf34
pf35
pf36
pf37
pf38
pf39
pf3a
pf3b
pf3c
pf3d
pf3e
pf3f
pf40
pf41
pf42
pf43
pf44
pf45
pf46
pf47
pf48
pf49
pf4a
pf4b
pf4c
pf4d
pf4e
pf4f
pf50
pf51
pf52
pf53
pf54
pf55
pf56
pf57
pf58
pf59
pf5a
pf5b
pf5c
pf5d
pf5e
pf5f
pf60
pf61
pf62
pf63
pf64

Partial preview of the text

Download WGU C170 Data Management Applications (over 400 Questions And Answers Latest Update 2023) and more Exams Economics in PDF only on Docsity!

WGU C170 Data Management Applications

(over 400 Questions And Answers Latest

Update 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 - correct 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 - correct 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 - correct 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. - correct 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, B 2,4 - correct 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

1 member_id 2 expiration 3 suffix 4 email 5 last name 6 city A 1, B 3,4 - correct 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. - correct 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 - correct 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 - correct 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. - correct answer D? Which command creates a database only if it does not already exist?

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+; - correct 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? A ORDER BY PRODNUM; B GROUP BY PRODNUM; C COUNT PRODNUM; D SUM PRODNUM; - correct answer B Which data definition language statement affects databases or objects in them? A INSERT

B NULL

C ALTER

D SELECT - correct answer C What does the DELETE statement do? A It removes rows from a table. B It removes views. C It removes columns not named in the column list. D It removes columns from a table. - correct answer A Which condition must be in effect to use the INSERT INTO ... VALUES syntax for an INSERT statement? A The VALUES list must contain a value for each non-null valued column in the table. B The INSERT INTO portion of the statement must refer to a sampdb database table. C The INSERT INTO portion of the statement must generate a LOAD DATA statement. D The VALUES list must contain a value for each row in the table. - correct answer A Refer to the given SQL statement. CREATE TABLE mytbl ( f FLOAT(10,4), c CHAR(15) NOT NULL DEFAULT 'none',

CREATE TABLE CUSTOMER

(CustomerIDINT NOT NULL AUTO_INCREMENT, LastName VARCHAR(100) NOT NULL, FirstName VARCHAR(100) NOT NULL, PRIMARY KEY( CustomerID )); Which component of the command indicates the table's name? A TABLE CUSTOMER B CustomerID C CUSTOMER D INT - correct answer C Which method creates an empty copy of a table and then populates it from the original table? A CREATE TABLE ... INTO followed by INSERT INTO: B INSERT TABLE ... LIKE followed by SELECT: C INSERT TABLE ... SELECT followed by INSERT INTO ... LIKE: D CREATE TABLE ... LIKE followed by INSERT INTO ... SELECT : - correct answer D Refer to the given SQL syntax. ALTER TABLE tbl_name action [, action ] ... ; What does this syntax allow? Choose 2 answers

1 Changing storage space 2 Dropping indexes 3 Changing column data types 4 Adding rows A 2, B 3,4 - correct answer A Which command eliminates a table? A REMOVE TABLE B TRUNCATE TABLE C DELETE TABLE D DROP TABLE - correct answer D Why is a view used to give controlled access to data? A To move complicated security routines to subqueries B To limit many-to-many relationships between various entities and attributes C To add complexity to encryption techniques D To restrict access to persons retrieving and modifying sensitive information - correct answer D A database manager plans to create a view of a table and has these two elements: •The CREATE VIEW privilege for the table •A level of privilege for every column selected by the SELECT What else does the manager need to create this view?

What happens as a result of the execution of this statement to the HRDB table on which the EMPLOYEE view is based? A The viewing of data is prohibited. B The view is discarded. C The data is discarded. D Unauthorized access to the view is restricted. - correct answer B When a product is deleted from the product table, all corresponding rows for the product in the pricing table are deleted automatically as well. What is this referential integrity technique called? A Cascaded delete B Foreign key constraint C Referential delete D Dynamic update - correct answer A Refer to the given information. CREATE TABLE 'test1' ( contact_id INT(10), name VARCHAR(10), event_id INT(5),

Which command should be added to the end to make the event_id attribute the primary key within a CREATE TABLE statement? A PRIMARY KEY (event_id)); B PRIMARY KEY = event_id); C PRIMARY (event_id)' D (PRIMARY KEY: event_id); - correct answer A What does the clause PRIMARY KEY followed by a field name in parentheses mean in a CREATE TABLE statement? A The column, in parentheses, is the primary key for the table. B The row, in parentheses, can be inserted as the foreign key. C The primary key value, in parentheses, can be used by a column. D The foreign key, in parentheses, is linked to the primary key. - correct answer A Which statement should be used so that it assigns a foreign key to the customer name? A FOREIGN KEY ( customer_name ) ( index_columns ) B FOREIGN KEY = customer_name REFERENCES table_name ( customer_name ) C FOREIGN KEY ( customer_name ) REFERENCES table_name ( customer_name ) D FOREIGN KEY [ table_name ] ( customer_name ) - correct answer C Which ALTER TABLE statement adds a foreign key constraint to a child table? A ALTER TABLE child ADD FOREIGN KEY (par_id) REFERENCES parent (par_id) ON DELETE CASCADE;

A Optimizer catalog B Join catalog C Relational catalog D Query catalog - correct answer C Which clause in a CREATE TABLE statement creates an index on a field? A INDEX index_columns (index_name) B INDEX index_name (index_columns) C INDEX index_name (index_rows) D INDEX index_rows (index_name) - correct answer B A database administrator needs to modify an index on the CUSTOMER table called IDX_NAME because there are multiple customers with the same name. It has been determined that it would be desirable to modify the index to also include the telephone number. Which command line will modify the IDX_NAME index on the CUSTOMER table to include both NAME and TELEPHONE as part of the index? A ALTER INDEX IDX_NAME ON CUSTOMER(NAME, TELEPHONE); B MODIFY INDEX IDX_NAME BY CUSTOMER(NAME, TELEPHONE); C CHANGE INDEX IDX_NAME BY CUSTOMER(NAME, TELEPHONE); D REPLACE INDEX IDX_NAME ON CUSTOMER(NAME, TELEPHONE); - correct answer A Which syntax is the correct way to use the DROP INDEX command to drop a primary key from a table?

A DROP INDEX WHERE PRIMARY KEY = tbl_name ; B DROP INDEX PRIMARY ON tbl_name ; C DROP INDEX PRIMARY KEY tbl_name; D DROP INDEX PRIMARY KEY ON tbl_name; - correct answer B A database administrator tries to delete a row in a parent table, but the delete fails because a row in another table depends on that row.Which referential- integrity rule is in effect? A The cascade delete rule B The default delete rule C The set-to-null delete rule D The restrict delete rule - correct answer D A manager deletes the BUILDING_MANAGEMENT row in a DEPARTMENT table. Deleting the row also deletes the GARDENING_TEAM and CLEANING_TEAM rows from the referenced PERSONNEL_TEAMS table. Which referential-integrity rule is in effect? A The restrict delete rule B The default delete rule C The cascade delete rule D The set-to-null delete rule - correct answer C Refer to the given SQL statement.INSERT INTO student VALUES('John','S',NULL), ('Mary','S',NULL); What do the parentheses denote?

A SELECT * FROM Owners; B SELECT ALL FROM Owners; C RETRIEVE ALL COLUMNS FROM Owners; D RETRIEVE COMPLETE FROM Owners; - correct answer A Which SQL statement tallies the number of different cities in which record companies have been founded? A GROUP BY(city) FROM recordcompany; B SELECT COUNT(DISTINCT city) FROM recordcompany; C SELECT DISTINCT city FROM recordcompany; D GROUP BY *(DISTINCT city) FROM recordcompany; - correct answer B Which task does ORDER BY perform by default? A Sorting rows in ascending order B Sorting columns in ascending order C Sorting rows in descending order D Sorting columns in descending order - correct answer A A database administrator of a movie rental company needs to compile a list of movies released each year for a marketing campaign. Which SQL command will accomplish this? A SELECT MOVIE, YEAR FROM MOVIE BY TITLE; B SELECT MOVIE, TOTAL FROM MOVIE BY TITLE;

C SELECT YEAR, TITLE FROM MOVIE GROUP BY YEAR;

D SELECT MOVIE, TITLE FROM MOVIE BY MOVIE YEAR; - correct answer C How does Table 2 affect the returned results from Table 1 in a left join? A Records are dropped from the results where a match is found between Table 1 and Table 2. B All Table 1 results are returned, regardless of whether a match is found in Table

C Results are only returned where a match is found between Table 1 and Table 2. D Table 1 results are prioritized where a match with Table 2 exists. - correct answer B Which command functions as a RIGHT JOIN with the roles of the tables reversed? A INNER JOIN B LEFT JOIN C FULL JOIN D OUTER JOIN - correct answer B Refer to the given SQL statement. SELECT t1., t2. FROM t1 LEFT JOIN t2 ON t1.i1 = t2.i What does the LEFT JOIN statement do?