Exam 6: Database Implementation and Use
Exam 1: Introduction57 Questions
Exam 2: Database Requirements and ER Modeling100 Questions
Exam 3: Relational Database Modeling100 Questions
Exam 4: Update Operations, update Anomalies, and Normalization100 Questions
Exam 5: SQL100 Questions
Exam 6: Database Implementation and Use55 Questions
Exam 7: Data Warehousing Concepts48 Questions
Exam 8: Data Warehouse and Data Mart Modeling100 Questions
Exam 9: Data Warehouse Implementation and Use50 Questions
Exam 10: Overview of Dbms Functionalities and Database Administration42 Questions
Select questions type
What is a report?
Free
(Essay)
4.9/5
(30)
Correct Answer:
A report is a database front-end component whose purpose is to present the data and calculations on the data from one or more tables from the database in a formatted way.Whereas the purpose of forms is to facilitate the interaction between the end users and the database by enabling users to engage in actions such as update and search,reports are used strictly for the retrieval of data.The data that is retrieved via reports is formatted and arranged in a professional and easy-to-view fashion,to be displayed on the screen or printed as a hard copy.
Which of the following describes the uniqueness data quality characteristic?
Free
(Multiple Choice)
4.8/5
(38)
Correct Answer:
B
HAPPY INSURANCE
Observe the HAPPY INSURANCE DATABASE:
CLIENT
ClientID ClientName CientAgent ClientSpouseName C111 Tom A1 Jenny C222 Kain A1 Bill C333 Cole A2 Amy C444 Dorothy A2 C555 Anay A3 Amy C666 Tina A3 Matt C777 Christina A4 Mike AGENT
AgentID AgentName AgentArea AgentRating AgentYearOfHire SupervisedBy A1 Kate 1 101 1990 A2 Amy 2 92 2009 A1 A3 Luke 3 100 1992 A4 James 3 90 2010 A3 AREA
ArealD AreaName AreaHQ 1 East Boston 2 West San Francisco 3 Central Chicago
This database will be used for the following questions citing tables from the HAPPY INSURANCE database.
-Show the CREATE TABLE statements for HAPPY INSURANCE database for the table CLIENT (assume that non-primary key columns can be optional)with the DELETE CASCADE option for its referential integrity constraint.
Free
(Essay)
4.9/5
(32)
Correct Answer:
CREATE TABLE client
(clientid CHAR(4),
clientname CHAR(10),
clientagent CHAR(2),
clientspousename CHAR(10),
PRIMARY KEY (clientid),
FOREIGN KEY (clientagent)REFERENCES agent
ON DELETE CASCADE);
Describe the update set-to-null option (for implementing a referential integrity constraint).
(Essay)
4.9/5
(35)
Which of the following describes the consistency data quality characteristic?
(Multiple Choice)
4.8/5
(32)
Describe the update cascade option (for implementing a referential integrity constraint).
(Essay)
4.7/5
(30)
ARC UNIVERSITY
Observe the following scenario in ARC UNIVERSITY,taking place in 2013.An office worker was given a task to enter into a table all currently enrolled students at ARC UNIVERSITY.He just started and so far he has correctly entered five records,shown in the table CURRENTLY ENROLLED STUDENTS.There are no errors in any of the five records entered so far.
CURRENTLY ENROLLED STUDENTS (YEAR 2013)
This scenario will be used for the following questions citing table CURRENTLY ENROLLED STUDENTS.
-If the office worker inserts the record below into the table CURRENTLY ENROLLED STUDENTS,which problem will occur? (Assume that all the dates in the record below are correct. )



(Multiple Choice)
5.0/5
(36)
HAPPY INSURANCE
Observe the HAPPY INSURANCE DATABASE:
CLIENT
ClientID ClientName CientAgent ClientSpouseName C111 Tom A1 Jenny C222 Kain A1 Bill C333 Cole A2 Amy C444 Dorothy A2 C555 Anay A3 Amy C666 Tina A3 Matt C777 Christina A4 Mike AGENT
AgentID AgentName AgentArea AgentRating AgentYearOfHire SupervisedBy A1 Kate 1 101 1990 A2 Amy 2 92 2009 A1 A3 Luke 3 100 1992 A4 James 3 90 2010 A3 AREA
ArealD AreaName AreaHQ 1 East Boston 2 West San Francisco 3 Central Chicago
This database will be used for the following questions citing tables from the HAPPY INSURANCE database.
-Assume a search form for HAPPY INSURANCE database is created where a user can perform the following action:
ENTER AREA ID:
ENTER AREA NAME:
ENTER AREA HQ:
ENTER AgentID:
ENTER AgentName:
ENTER AgentArea:
ENTER AgentRating:
ENTER AgentYearOfHire: 2010 (<--- Entered by the user)
ENTER SupervisedBY: A3 (<--- Entered by the user)
(User clicks on the search button upon entering the values above. )
Write the SQL statement that will be issued on the user's behalf based on this action.
(Essay)
4.8/5
(33)
HAPPY INSURANCE
Observe the HAPPY INSURANCE DATABASE:
CLIENT
ClientID ClientName CientAgent ClientSpouseName C111 Tom A1 Jenny C222 Kain A1 Bill C333 Cole A2 Amy C444 Dorothy A2 C555 Anay A3 Amy C666 Tina A3 Matt C777 Christina A4 Mike AGENT
AgentID AgentName AgentArea AgentRating AgentYearofHire SupervisedBy A1 Kate 1 101 1990 A2 Amy 2 92 2009 Al A3 Luke 3 100 1992 A4 James 3 90 2010 A3 AREA
ArealD AreaName AreaHQ 1 East Boston 2 West San Francisco 3 Central Chicago
This database will be used for the following questions citing tables from the HAPPY INSURANCE database.
-If a DBMS enforces an UPDATE SET-TO-NULL option on the referential integrity constraint between CLIENT and AGENT in the HAPPY INSURANCE database,what will be the outcome after a User tries to change the AgentID value in the last record to A5?
(Multiple Choice)
4.9/5
(36)
Describe the update restrict option (for implementing a referential integrity constraint).
(Essay)
4.7/5
(30)
Describe the delete cascade option (for implementing a referential integrity constraint).
(Essay)
4.8/5
(33)
Most RDBMS packages implement assertions using the CREATE ASSERTION statement.
(True/False)
4.8/5
(29)
ARC UNIVERSITY
Observe the following scenario in ARC UNIVERSITY,taking place in 2013.An office worker was given a task to enter into a table all currently enrolled students at ARC UNIVERSITY.He just started and so far he has correctly entered five records,shown in the table CURRENTLY ENROLLED STUDENTS.There are no errors in any of the five records entered so far.
CURRENTLY ENROLLED STUDENTS (YEAR 2013)
This scenario will be used for the following questions citing table CURRENTLY ENROLLED STUDENTS.
-If the office worker inserts the record below into the table CURRENTLY ENROLLED STUDENTS,which problem will occur? (Assume that all the dates in the record below are correct. )
200705 MeCormick Chris Chcoormickc@arcedu 11.10.1992 1.1.2010. 1.1.2014. Chicago USA

(Multiple Choice)
4.7/5
(23)
ARC UNIVERSITY
Observe the following scenario in ARC UNIVERSITY,taking place in 2013.An office worker was given a task to enter into a table all currently enrolled students at ARC UNIVERSITY.He just started and so far he has correctly entered five records,shown in the table CURRENTLY ENROLLED STUDENTS.There are no errors in any of the five records entered so far.
CURRENTLY ENROLLED STUDENTS (YEAR 2013)
This scenario will be used for the following questions citing table CURRENTLY ENROLLED STUDENTS.
-If the office worker inserts the record below into the table CURRENTLY ENROLLED STUDENTS,which problem will occur? (Assume that all the dates in the record below are correct. )
200603 Little Mark hittlem@arcedu 04.05.1994 1.1.2011. 1.1.2015. Detroit US

(Multiple Choice)
4.8/5
(34)
Using an input mask such as DD/MM/YYYY for entry of a date value is an example of a corrective data quality action.
(True/False)
4.7/5
(43)
ARC UNIVERSITY
Observe the following scenario in ARC UNIVERSITY,taking place in 2013.An office worker was given a task to enter into a table all currently enrolled students at ARC UNIVERSITY.He just started and so far he has correctly entered five records,shown in the table CURRENTLY ENROLLED STUDENTS.There are no errors in any of the five records entered so far.
CURRENTLY ENROLLED STUDENTS (YEAR 2013)
This scenario will be used for the following questions citing table CURRENTLY ENROLLED STUDENTS.
-If the office worker inserts the record below into the table CURRENTLY ENROLLED STUDENTS,which problem will occur? (Assume that all the dates in the record below are correct. )



(Multiple Choice)
4.8/5
(45)
Showing 1 - 20 of 55
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)