Filters
Question type

Study Flashcards

By default,when Microsoft Access creates a relationship between two tables it creates a(n)________ relationship.

Correct Answer

verifed

verified

The ideal primary key is ________.


A) short
B) numeric
C) fixed
D) A and B
E) A,B,and C

F) C) and D)
G) A) and E)

Correct Answer

verifed

verified

Relationships that are 1:1 do not require referential integrity constraints.

A) True
B) False

Correct Answer

verifed

verified

To represent a 1:N relationship in the relational model,the key of either entity may be placed as a foreign key in the other entity.

A) True
B) False

Correct Answer

verifed

verified

Given the tables PRODUCT (ProductID, Description, Cost) SUPPLIER (SupplierID, ContactName, PhoneNumber) As shown in the figure below,which of the following would represent the correct placement of foreign keys? Given the tables PRODUCT (<u>ProductID</u>, Description, Cost)  SUPPLIER (<u>SupplierID</u>, ContactName, PhoneNumber)  As shown in the figure below,which of the following would represent the correct placement of foreign keys?   A) PRODUCT <u>(ProductID</u>,Description,Cost)  SUPPLIER  <u>(SupplierID</u>,ContactName,PhoneNumber)  B) PRODUCT <u>(ProductID</u>,Description,Cost)  SUPPLIER  <u>(SupplierID</u>,ContactName,PhoneNumber,ProductID)  C) PRODUCT <u>(ProductID</u>,Description,Cost,SupplierID)  SUPPLIER  <u>(SupplierID</u>,ContactName,PhoneNumber,ProductID)  D) PRODUCT <u>(ProductID</u>,Description,Cost,ContactName)  SUPPLIER  <u>(SupplierID</u>,ContactName,PhoneNumber)  E) PRODUCT <u>(ProductID</u>,Description,Cost,SupplierID)  SUPPLIER  <u>(SupplierID</u>,ContactName,PhoneNumber)


A) PRODUCT (ProductID,Description,Cost) SUPPLIER (SupplierID,ContactName,PhoneNumber)
B) PRODUCT (ProductID,Description,Cost) SUPPLIER (SupplierID,ContactName,PhoneNumber,ProductID)
C) PRODUCT (ProductID,Description,Cost,SupplierID) SUPPLIER (SupplierID,ContactName,PhoneNumber,ProductID)
D) PRODUCT (ProductID,Description,Cost,ContactName) SUPPLIER (SupplierID,ContactName,PhoneNumber)
E) PRODUCT (ProductID,Description,Cost,SupplierID) SUPPLIER (SupplierID,ContactName,PhoneNumber)

F) A) and E)
G) A) and D)

Correct Answer

verifed

verified

As far as Microsoft Access is concerned,there are no 1:N relationships.

A) True
B) False

Correct Answer

verifed

verified

The first step in representing entities using the relational model is to determine which identifier will be used as the key.

A) True
B) False

Correct Answer

verifed

verified

The ideal primary key is short,numeric,and fixed.

A) True
B) False

Correct Answer

verifed

verified

Recursive relationships can be represented in the relational model using the same techniques that are used for binary relationships.

A) True
B) False

Correct Answer

verifed

verified

Which of the following would be a reason to denormalize a relation?


A) Relax security
B) Lack of design time
C) End user preference
D) Improve performance
E) None of the above

F) A) and C)
G) A) and B)

Correct Answer

verifed

verified

How are 1:1,1:N and N:M relationships handled in Microsoft Access?

Correct Answer

verifed

verified

By default,when Microsoft Access creates...

View Answer

Microsoft Access uses the same pure N:M relationships that occur in data modeling.

A) True
B) False

Correct Answer

verifed

verified

Which of the following is not true about surrogate keys?


A) They are identifiers that are supplied by the system,not the users.
B) They have no meaning to the users.
C) They are nonunique within a table.
D) They can be problematic when combining databases.
E) The DBMS will not allow their values to be changed.

F) C) and D)
G) A) and B)

Correct Answer

verifed

verified

Given the tables TABLE_A (Attribute1, Attribute2, Attribute3) TABLE_B (Attribute4, Attribute5, Attribute6) As shown in the figure below,which of the following would display the correct placement of foreign keys in the relational model? Given the tables  TABLE_A (<u>Attribute1</u>, Attribute2, Attribute3)   TABLE_B (<u>Attribute4</u>, Attribute5, Attribute6)   As shown in the figure below,which of the following would display the correct placement of foreign keys in the relational model?   A)  TABLE_A (<u>Attribute1</u>, Attribute2, Attribute3)  TABLE B (<u>Attribute4</u>, Attribute5, Attribute6, Attributel)  B)  TABLE_A (<u>Attribute1</u>, Attribute2, Attribute3, Attribute4, Attribute5)   TABLE_B (<u>Attribute4</u>, Attribute5, Attribute6)   C)  TABLE_A (<u>Attribute1</u>, Attribute2, Attribute3, Attribute4)  TABLE_B <u>(Attribute4</u> , Attribute5, Attribute6, Attributel)   D)  TABLE_A (<u>Attribute1</u>, Attribute2, Attribute3)  TABLE B (<u>Attribute4</u>, Attribute5, Attribute6)   E)  TABLE_A (<u>Attribute1</u>, Attribute2, Attribute3, Attribute6)  TABLE_B (<u>Attribute4</u>, Attribute5, Attribute6)


A)
TABLE_A (Attribute1, Attribute2, Attribute3)
TABLE B (Attribute4, Attribute5, Attribute6, Attributel)
B)
TABLE_A (Attribute1, Attribute2, Attribute3, Attribute4, Attribute5)
TABLE_B (Attribute4, Attribute5, Attribute6)

C)
TABLE_A (Attribute1, Attribute2, Attribute3, Attribute4)
TABLE_B (Attribute4 , Attribute5, Attribute6, Attributel)

D)
TABLE_A (Attribute1, Attribute2, Attribute3)
TABLE B (Attribute4, Attribute5, Attribute6)

E)
TABLE_A (Attribute1, Attribute2, Attribute3, Attribute6)
TABLE_B (Attribute4, Attribute5, Attribute6)

F) A) and B)
G) A) and D)

Correct Answer

verifed

verified

Once a table has been defined,it should be examined according to ________ criteria.

Correct Answer

verifed

verified

The first step of database design is to define a table for each ________.

Correct Answer

verifed

verified

To represent a 1:N relationship in the relational model,the key of the entity on the one side of the relationship is placed as a foreign key in the entity on the many side of the relationship.

A) True
B) False

Correct Answer

verifed

verified

Explain the representation of a one-to-many strong entity relationship in a relational database design.

Correct Answer

verifed

verified

One-to-many relationships are represente...

View Answer

Which of the following is not true of recursive relationships?


A) When the recursive relationship is M:N,an intersection table is created.
B) The rows of a single table can play two different roles.
C) The techniques for representing the tables are the same as for non-recursive relationships except the rows are in the same table.
D) Recursive relationships can be 1:1,1:N,or M:N relationships.
E) Even when the relationship is 1:N,a new table must be defined to represent the relationship.

F) C) and E)
G) A) and B)

Correct Answer

verifed

verified

Relations should always be normalized to the highest degree possible.

A) True
B) False

Correct Answer

verifed

verified

Showing 21 - 40 of 81

Related Exams

Show Answer