Black Friday Sale - Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 65percent

Welcome To DumpsPedia

1D0-541 Sample Questions Answers

Questions 4

A theta-join can be viewed as:

Options:

A.

The intersection oftwo relations

B.

ACartesian product of two relations

C.

Arestricted Cartesian product of two relations

D.

The Cartesian product oftwo union-compatible relations

Buy Now
Questions 5

Consider the following database information:

domain s_id: integer domain grd: fixed length

character string length 1

STUDENT_GRADE(

Student_Number: s_id NOT NULL

Grade: grd ) Primary Key

Student_Number

During which phase of the database design process would this information be developed?

Options:

A.

Logical

B.

Physical

C.

Conceptual

D.

Implementation

Buy Now
Questions 6

Consider the following DBDL description of an entity: Teachers (teach_num: variable length character string length 10 NOT NULL teach_name: variable length character string length 10 NOT NULL) Primary Key: teach_num which integrity constraint is satisfied?

Options:

A.

Entity integrity

B.

Necessary data

C.

Referential integrity

D.

Referential foreign integrity

Buy Now
Questions 7

Which subset of Structured Query Language (SQL) is used to create and name database entities?

Options:

A.

Data Query Language

B.

Database Entity Language

C.

Data Definition Language

D.

Data Manipulation Language

Buy Now
Questions 8

Which database security technique prevents invalid data from being entered into the database?

Options:

A.

File locking

B.

User authorization

C.

Parity checks

D.

Integrity controls

Buy Now
Questions 9

Consider the following relation definitions:

STUDENT(

Student_Number: integer NOT NULL

Name: variable length character string length 20)

Primary Key Student_Number

HOUSING(

Housing_ID: integer NOT NULL

Student_Number: integer NOT NULL

Building: variable length character string length 25)

Primary Key Housing_ID

Foreign Key Student_Number References STUDENT(Student_Number)

ON DELETE NO ACTION

ON UPDATE CASCADE

What are the referential constraints for the relations defined in these relation definitions?

Options:

A.

There is no relationship between changes in STUDENT(Student_Number) and HOUSING(Student_Number).

B.

When STUDENT(Student_Number) is changed or deleted, this modification or deletion will automatically be reflected in HOUSING(Student_Number).

C.

Modifications to HOUSING(Student_Number) are automatically reflected in changes to STUDENT(Student_Number), but deletions are not permitted.

D.

Modifications to STUDENT(Student_Number) are automatically reflected in changes to HOUSING(Student_Number). For a deletion to occur fromSTUDENT(Student_Number), it must first occur in HOUSING(Student_Number).

Buy Now
Questions 10

Consider the Stu_Act and Act_Fee tables shown in the exhibit. Which relational algebraic operation would yield the Activity Relation table in the exhibit?

Options:

A.

Union

B.

Intersection

C.

Natural join

D.

Cartesian product

Buy Now
Questions 11

Which database architecture is best suited to implementation in the World Wide Web environment?

Options:

A.

Two-tier using thin client

B.

Three-tier using fat client

C.

Three-tier using thin client

D.

Centralized mainframe with terminal client

Buy Now
Questions 12

Consider the Registration relation shown in the exhibit. Which of the following SQL statements would return all tuples that have course codes beginning with the letter M?

Options:

A.

SELECT * FROM

Registration WHERE

Course_Code = #

B.

SELECT * FROM

Registration WHERE

Course_Code LIKE _

C.

SELECT* FROM

Registration WHERE

Course_Code LIKE %

D.

SELECT * FROM

Registration WHERE

Course Code = %

Buy Now
Questions 13

Which of the following ACID properties requires that a transaction be executed in its entirety or not all?

Options:

A.

Durability

B.

Consistency

C.

Isolation

D.

Atomicity

Buy Now
Questions 14

The exhibit shows a table called Student Relation that tracks all information related to a students courses, professors and sites. What would be the consequence of removing all records for a student with the ID 1311?

Options:

A.

Only an update anomaly would occur.

B.

An insertion anomaly would occur.

C.

A deletion anomaly would occur.

D.

An update anomaly and a deletion anomaly would occur.

Buy Now
Questions 15

Consider the following relational algebraic expression as well as the Dept1_Parta and Dept2_Parts relations shown in the exhibit: Which of the following relations would result form the given relational algebraic expression?

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Buy Now
Questions 16

Consider the Orders relation shown in the exhibit. Which of the following SQL statements would return all complete tuples for order dates in 2002, arranged by amount from lowest to highest?

Options:

A.

SELECT *

FROM Orders

WHERE Order_Date LIKE _02

ORDER BY Amount;

B.

SELECT (Order_Date, Amount)

FROM Orders

WHERE Order_Date LIKE %02

ORDER BY Amount;

C.

SELECT *

FROM Orders

WHERE Order_Date LIKE _02

ORDER BY Order_No;

D.

SELECT *

FROM Orders

WHERE Order_Date LIKE %02

ORDER BY Amount;

Buy Now
Questions 17

Which of the following best describes the ON DELETE NO ACTION referential integrity constraint?

Options:

A.

If a parent key is deleted, any child keys referenced by the parent key are automatically deleted.

B.

If a parent key is deleted, no test is made for referential integrity.

C.

If any child key references a parent key, the record containing the parent key cannot be deleted.

D.

If a parent key is deleted, all child keys are automatically set to a specified value.

Buy Now
Questions 18

Consider the Employee relation shown in the exhibit. A database manager wants to set up a view called Emp_Dept that allows users to find employees and their department ID numbers. Which SQL statement will accomplish this?

Options:

A.

CREATE VIEW Emp_Dept AS SELECT

Last_Name, First_Name, Dept_ID FROM

Employee;

B.

UPDATE VIEW Emp_Dept

AS SELECT * FROM

Employee;

C.

UPDATE VIEW Emp_Dept AS SELECT

Last_Name, First_Name, Dept_ID FROM

Employee;

D.

CREATE VIEW Emp_Dept

AS SELECT * FROM

Employee WHERE ID = 0001

AND ID = 0002 AND ID =

0003 AND ID = 0004;

Buy Now
Questions 19

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.

Buy Now
Questions 20

Consider the following SQL statement and the Orders relation shown in the exhibit:

What is the output of this SQL statement?

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Buy Now
Questions 21

The exhibit shows a table called Housing Relation that relates a unique student identification number with a dormitory building and a room fee for that building. Each building charges only one fee and a student can live in only one building. The key for the Housing Relation is Student_ID.

This table is in which normal form?

Options:

A.

1NF

B.

1NFand2NF

C.

1NF,2NFand3NF

D.

1NF,2NF,3NFandBCNF

Buy Now
Questions 22

Consider the Orders relation shown in the exhibit. Which of the following SQL statements would replace the value in the Sales_Rep_No column with 110 everywhere that Sales_Rep_No 108 is listed?

Options:

A.

UPDATE Sales_Rep_No

IN Orders

SET(Sales_Rep_No = 110

WHERE Sales_Rep_No = 108);

B.

UPDATE Orders

SET Sales_Rep_No = 110

WHERE Sales_Rep_No = 108;

C.

UPDATE Orders

SET Sales_Rep_No = 110;

D.

UPDATE Orders

WHERE Sales_Rep_No = 108

SET Sales_Rep_No = 110;

Buy Now
Questions 23

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

Buy Now
Questions 24

Which mechanism provides database users with controlled access to the database through the use of virtual tables?

Options:

A.

View

B.

Data dictionary

C.

Database control language

D.

Database management system

Buy Now
Questions 25

Consider the following table as well as the Dept1_Parts and Dept2_Parts relations shown in the exhibit: Which of the following relational algebraic expressions would result in the given table?

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Buy Now
Questions 26

Consider the Recreation relation in the exhibit. A data operation that changes one of the tuples for Student_ID 1003 must be performed. It is necessary to change one of the activities from swimming to tennis. The Student_ID and Activity attributes make up the primary key for the Recreation relation. All related information must be altered, as well. Which SQL statement or statements would best accomplish this?

Options:

A.

UPDATE Recreation SET Activity,

Activity_Fee (‘Tennis’,100) WHERE

Student_ID = 1003;

B.

UPDATE TABLE Recreation ALTER COLUMN ACTIVITY

SET ACTIVITY =‘Tennis', Activity_Fee = 100 WHERE

Student__ID = 1003 AND Activity = wimming?AND Activity=

?wimming?

C.

UPDATE Recreation SET Activity =

‘Tennis', Activity_Fee = 100 WHERE

Student_ID = 1003 AND Activity =

'Swimming';

D.

DELETE Activity FROM

Recreation WHERE

Student_ID = 1003; INSERT

INTO Recreation VALUES (1003,‘Tennis', 100);

Buy Now
Questions 27

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

Buy Now
Questions 28

Consider the relation shown in the exhibit. Which of the following SQL statements would properly add information for a new employee?

Options:

A.

INSERT INTO Employee

VALUES(0005, Tim, Bogart, 03-15-77);

B.

INSERT INTO Employee(Emp_ID, First_Name, Last_Name, Birth_Date)

VALUES(0004, Tim, Bogart, 03-15-77);

C.

INSERT INTO Employee(Emp_ID, First_Name, Last_Name, Birth_Date)

VALUES(0005, Tim, Bogart, 03-05-77);

D.

INSERT INTO Employee(Emp_ID, First_Name, Last_Name, Birth_Date)

VALUES(0005, Tim, Bogart, 03-05-77);

Buy Now
Questions 29

The creation of intermediate entities occurs during the logical database design phase for an enterprise. It is used to resolve which types of relationships?

Options:

A.

One-to-many and recursive

B.

Complex, recursive, and many-to-many

C.

Redundant, recursive, and one-to-many

D.

One-to-many and one-to-one

Buy Now
Questions 30

Which of the following best describes the ON DELETE CASCADE referential integrity constraint?

Options:

A.

If a parent key is deleted, any child keys referenced by the parent key are automatically deleted.

B.

If any child key references a parent key, the record containing the parent key cannot be deleted.

C.

If a parent key is deleted,all child keys are automatically set to a specified value.

D.

If a parent key is deleted, no test is made for referential integrity.

Buy Now
Questions 31

You enterprise must decide whether to use a database management system. Which of the following lists four advantages of using a DBMS?

Options:

A.

Management of data redundancy, increased data integrity, increased data dependence, and increased application program flexibility.

B.

Consistency of data, adherence to standards, managed concurrency, and increased software complexity.

C.

Increased data access, increased data backup and recovery, data sharing, and consistency of data.

D.

Increased datasecurity, increased data integrity, increased data independence, and decreased data separation.

Buy Now
Questions 32

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 Part_ID

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

DIFFERENCE

(SELECT Part_ID

FROM Dept2_Parts);

Buy Now
Questions 33

Consider the following relation definition:

STUDENT(

Student_Number: integer NOT NULL

Name: variable length character string length 20 NOT NULL)

Primary Key Student_Number

HOUSING(

Housing_ID: integer NOT NULL

Student_Number: integer NOT NULL

Building: variable length character string length 25 NOT NULL)

Primary Key Housing_ID

Foreign Key Student_Number References

STUDENT(Student_Number)

ON DELETE NO CHECK

ON UPDATE

Which integrity constraint is violated in this relation definition?

Options:

A.

Entity integrity

B.

Domain constraint

C.

Referential integrity

D.

Enterprise constraint

Buy Now
Questions 34

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

Options:

A.

Union

B.

Difference

C.

Projection

D.

Intersection

Buy Now
Questions 35

NULL) Primary Key Class_Num

Consider the Information Engineering diagram shown in the exhibit. Which DBDL definition best describes this diagram?

Options:

A.

BUILDING(Building_ID, Bldg_Name, Location, Room_Count)

Primary Key Building_ID RESIDENT(R_ID, Room_Num,

Res_Name, Building_ID) Primary Key R_ID

B.

BUILDING(Building_ID, Bldg_Name, Location, Room_Count)

Primary Key BUILDING RESIDENT(R_ID, Room_Num,

Res_Name, Building_ID) Primary Key RESIDENT

C.

BUILDING(Building_ID, Bldg_Name, Location, Room_Count) Primary Key BUILDING ForeignKey BUILDING(Building_ID) references RESIDENT(Building_ID) RESIDENT(R_ID, Room_Num, Res_Name, Building_ID) Primary Key RESIDENT

D.

BUILDING(Building_ID, Bldg_Name, Location, Room_Count)

Primary Key Building_ID RESIDENT(R_ID, Room_Num,

Res_Name, Building_ID) Primary Key R_ID Foreign Key

Building_ID references BUILDING(Building_ID)

Buy Now
Questions 36

Which of the following definitions applies to all types of databases?

Options:

A.

Data that is stored as tables

B.

Software that manipulates data

C.

Data that is stored in a structured manner

D.

Data records that are stored sequentially in a file

Buy Now
Questions 37

Consider the entity-relation (ER) diagram shown in the exhibit. When the logical database design phase is completed, which of the following is a valid DBDL description of the base relations for the ER diagram?

Options:

A.

STUDENT(

Student_Number: integer NOT NULL

Name: variable length character string length 20 NOT NULL)

Primary Key Student_Number

CLASS(

Class_Num: integer NOT NULL

Class_Name: integer NOT NULL)

Primary Key Class_Num

B.

STUDENT(

Student_Number: integer NOT NULL

Name: variable length character string length 20 NOT NULL)

Primary Key Student_Number

CLASS(

Class_Num: integer NOT NULL

Class_Name: integer NOT NULL)

Primary Key Class_Num

Foreign Key Class_Num References STUDENT

C.

STUDENT(

Student_Number: integer NOT NULL

Name: variable length character string length 20 NOT NULL)

Primary Key Student_Number

STU_CLASS(

Student_Number: integer NOT NULL

Class_Num: integer NOT NULL)

Primary Key Student_Number

CLASS(

Class_Num: integer NOT NULL

Class_Name: integer NOT NULL)

Primary Key Class_Num

D.

STUDENT(

Student_Number: integer NOT NULL

Name: variable length character string length 20 NOT NULL)

Primary Key Student_Number

STU_CLASS(

Student_Number: integer NOT NULL

Class_Num: integer NOT NULL)

Primary Key Student_Number, Class_Num

CLASS(

Class_Num: integer NOT NULL

Class_Name: integer NOT NULL)

Primary Key Class_Num

Buy Now
Exam Code: 1D0-541
Exam Name: CIW v5 Database Design Specialist
Last Update: Nov 20, 2024
Questions: 124
$57.75  $164.99
$43.75  $124.99
$36.75  $104.99
buy now 1D0-541