Multiple Choice
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?
A) PRODUCT (ProductID, Description, Cost) SUPPLIER (SupplierID, ContactName, PhoneNumber)
B) PRODUCT (ProductID, Description, Cost, SupplierID) SUPPLIER (SupplierID, ContactName, PhoneNumber, ProductID)
C) PRODUCT (ProductID, Description, Cost) SUPPLIER (SupplierID, ContactName, PhoneNumber)
PRODUCT_SUPPLIER (ProductID, SupplierID, PhoneNumber)
D) PRODUCT (ProductID, Description, Cost, SupplierID) SUPPLIER (SupplierID, ContactName, PhoneNumber)
E) PRODUCT (ProductID, Description, Cost) SUPPLIER (SupplierID, ContactName, PhoneNumber)
PRODUCT_SUPPLIER (ProductID, SupplierID)
Correct Answer:

Verified
Correct Answer:
Verified
Q27: Recursive relationships can be represented in the
Q28: Which of the following would be a
Q29: To represent a 1:N relationship in the
Q30: Given the tables<br><b>TABLE_A (<u>Attribute1</u>,Attribute2,Attribute3)</b><br><b>TABLE_B (<u>Attribute4</u>,Attribute5,Attribute6)</b><br>As shown in
Q33: Write the schema to represent the entities
Q35: As far as Microsoft Access is concerned,there
Q36: After a 1:1 relationship has been created
Q42: One of the important properties of an
Q50: How are one-to-one recursive relationships addressed using
Q87: Explain the representation of a many-to-many strong