Easter Sale Special 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: exams65

CIW v5 Database Design Specialist Question and Answers

CIW v5 Database Design Specialist

Last Update May 14, 2024
Total Questions : 124

We are offering FREE 1D0-541 CIW exam questions. All you do is to just go and sign up. Give your details, prepare 1D0-541 free exam questions and then go for complete pool of CIW v5 Database Design Specialist test questions that will help you more.

1D0-541 pdf

1D0-541 PDF

$35  $99.99
1D0-541 Engine

1D0-541 Testing Engine

$42  $119.99
1D0-541 PDF + Engine

1D0-541 PDF + Testing Engine

$56  $159.99
Questions 1

Which statement accurately describes a characteristic of attributes?

Options:

A.  

The ordering of attributes in a table is significant.

B.  

An attribute contains values from multiple domains.

C.  

An attribute name can be used only once per table.

D.  

An attribute name can be used only once in a relational database system with multiple tables.

Discussion 0
Questions 2

Consider the relation shown in the exhibit. Which of the following SQL statements would return a relation that excludes all customers with a Satisfaction_Rate of less than or equal to 80 unless the Sales_Office is located in Atlanta?

Options:

A.  

SELECT * FROM Customers

WHERE Satisfaction_Rate > 80

OR Sales_Office = Atlanta

B.  

SELECT * FROM Customers

WHERE Satisfaction_Rate <= 80

AND Sales_Office = Atlanta

C.  

SELECT * FROM Customers

WHERE Satisfaction_Rate >= 80;

D.  

SELECT * FROM Customers

WHERE Satisfaction_Rate >= 80

AND NOT Sales Office = Atlanta

Discussion 0
Questions 3

A large enterprise uses a two-tier database architecture and runs complex database applications.

Which term best describes the client in this system?

Options:

A.  

Fat client

B.  

Enterprise client

C.  

Thin client

D.  

Terminal client

Discussion 0
Questions 4

Consider the entity-relationship (ER) diagram shown in the exhibit. Which type of relationship between the two entities is shown?

Options:

A.  

A recursive relationship

B.  

A many-to-many relationship

C.  

A one-to-one relationship

D.  

A one-to-many relationship

Discussion 0
Questions 5

Your enterprise has created a database and database application. The testing phase for the project has started. Which of the following best describes white-box testing of the projects software?

Options:

A.  

The database designer tests the software because he or she is able to make necessary changes to the underlying code for the software.

B.  

A user who has no knowledge of the softwares underlying code tests the software.

C.  

Someone other than the database designer tests the software. This person has no access to the underlying code and attempts to use the software only in ways not considered by the software designers.

D.  

A person tests the software and submits suggestions to the software's underlying code. This person is someone other than the database designer, but has access to the softwares underlying code.

Discussion 0
Questions 6

Consider the following relational algebraic expression: Which of the following SQL statements is equivalent to this relational algebraic expression?

Options:

A.  

SELECT*FROM Customers,

Employees WHERE Sales_Rep_No = Cust_No;

B.  

SELECT Cust_No, Cust_Name, Emp_Name, Emp_Loc FROM

Customers, Employees WHERE Customers.Sales_Rep_No =

Employees.Sales_Rep_No;

C.  

SELECT Cust_No, Cust_Name, Emp_Name, Emp_Loc FROM

Customers, Employees WHERE Employees.Sales_Rep_No =

Customers.Sales_Rep_No;

D.  

SELECT * FROM Customers, Employees WHERE

Customers.Sales_Rep_No = Employees.Sales_Rep_No;

Discussion 0
Questions 7

Which relational algebraic operation is used to select specific columns (attributes) from a relation?

Options:

A.  

Union

B.  

Difference

C.  

Projection

D.  

Intersection

Discussion 0
Questions 8

Consider the Information Engineering diagram shown in the exhibit. Building_ID, R_ID, Room_Count and Room_Num are integer numbers, whereas Bldg_Name, Location and Res_Name are all represented by variable-length strings with a maximum of 20 characters.

Which SQL statement best implements the RESIDENT relation shown in this diagram?

Options:

A.  

CREATE TABLE RESIDENT (

R_ID INTEGER NULL PRIMARY KEY,

Room_Num FLOAT,

Res_Name VARCHAR,

Building_ID INTEGER NULL,

FOREIGN KEY Building_ID REFERENCES BUILDING (Building_ID));

B.  

CREATE TABLE RESIDENT (

R_ID INTEGER NOT NULL PRIMARY KEY,

Room_Num BINARY,

Res_Name VARCHAR (20),

Building_ID INTEGER NOT NULL,

FOREIGN KEY Building_ID REFERENCES BUILDING (Building_ID));

C.  

CREATE TABLE RESIDENT (

R_ID INTEGER NOT NULL PRIMARY KEY,

Room_Num INTEGER,

Res_Name VARCHAR (20),

Building_ID INTEGER NOT NULL);

D.  

CREATE TABLE RESIDENT (

R_ID INTEGER NOT NULL PRIMARY KEY,

Room_Num INTEGER,

Res_Name VARCHAR (20),

Building_ID INTEGER NOT NULL,

FOREIGN KEY Building_ID REFERENCES BUILDING (Building_ID));

Discussion 0
Questions 9

Several SQL operations are performed by User 1 to access the Fee information for Bowling in the Act_Fee relation (shown in the exhibit). The first access returns a fee of 50. An unrelated SQL operation by another user updates the Bowling fee to 60. The second access by User 1 returns a fee of 60. What problem has occurred?

Options:

A.  

Rollback

B.  

Deadlock

C.  

Dirty read

D.  

No problem has occurred.

Discussion 0
Questions 10

Which area of database security involves maintaining access to enterprise data?

Options:

A.  

Theft

B.  

Privacy

C.  

Availability

D.  

Confidentiality

Discussion 0
Questions 11

Which of the following best describes a composite key?

Options:

A.  

A composite key is a primary key that consists of the first two attributes of a relation.

B.  

A composite key is a primary or foreign key defined by its parent keys.

C.  

A composite key is a foreign key that consists of the same attributes as the primary key from a related table.

D.  

A composite key is a primary or foreign key that consists of two or more attributes of a relation.

Discussion 0
Questions 12

To create a view, what are the minimal privileges that a user must have for the relations used to make the view?

Options:

A.  

GRANT

B.  

REVOKE

C.  

SELECT

D.  

CREATE VIEW

Discussion 0
Questions 13

Consider the symbols shown in the exhibit. Which of the following correctly identifies these symbols when used in an entity-relationship (ER) diagram?

Options:

A.  

1 = attribute, 2 = entity, 3 = relationship

B.  

1 = entity, 2 = relationship, 3 = attribute

C.  

1 = relationship, 2 = entity, 3 = attribute

D.  

1 = relationship, 2 = attribute, 3 = entity

Discussion 0
Questions 14

Which term describes an attribute or combination of attributes that uniquely identifies a row in a relation?

Options:

A.  

Entity

B.  

Domain

C.  

Primary key

D.  

Attribute group

Discussion 0
Questions 15

For the Employee relation shown in the exhibit, which set of column value holds the complete tuple for the employee named James Smith?

Options:

A.  

0002, James, Smith

B.  

0002, James, Smith, 10-25-76

C.  

First_Name, James, Last_Name, Smith

D.  

Emp_ID, 0002, First_Name, James, Last_Name, Smith

Discussion 0
Questions 16

Consider the Dept1_Parts and Dept2_Parts relations shown in the exhibit. Which of the following SQL statements would create a set difference of the two relations with the widest variety of Structured Query Language dialects?

Options:

A.  

SELECT *FROM

Dept1_Parts

EXCEPT(SELECT

PartJD FROM

Dept2_Parts);

B.  

SELECT * FROM

Dept1_Parts MINUS

(SELECT Part_ID

FROM Dept2_Parts);

C.  

SELECT*FROM

Dept1_Parts

DIFFERENCE

(SELECT Part_ID

FROM Dept2_Parts);

D.  

SELECT*FROM

Dept1_Parts WHERE

Part_ID NOT IN

(SELECT Part_ID FROM

Dept2_Parts);

Discussion 0
Questions 17

Which term best defines a database system in which data records are stored in one or more files with no structured relationship?

Options:

A.  

Flat-file database

B.  

Relational database

C.  

Distributed database

D.  

Object-oriented database

Discussion 0
Questions 18

Your enterprise is involved in planning a database project. The exhibit shows the result of one phase of the database design life cycle. Which term best describes the diagram shown in the exhibit?

Options:

A.  

Information Engineering (IE) data model

B.  

Corporate data model

C.  

Database requirements model

D.  

ERD model

Discussion 0