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?
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?

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?

Consider the following SQL statement and the Orders relation shown in the exhibit:
How many records should be returned?
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?
Which subset of Structured Query Language (SQL) is used to limit access to a database or its data?
Consider the entity-relationship (ER) diagram shown in the exhibit. Which type of relationship between the two entities is shown?

Consider the relational database shown in the exhibit.
What is the foreign key in this database?

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?

Which database architecture is best suited to implementation in the World Wide Web environment?
Consider the relation shown in the exhibit. Which of the following SQL statements would properly remove all tuples for New York customers?

Your enterprise has reached the conceptual design phase for a database project. What is the desired goal at the end of this design phase?
Which of the following best describes the ON DELETE NO ACTION referential integrity constraint?
Your company must choose which type of database to use for a new project. Which of the following lists three characteristics of file-based database systems?
Which term describes an attribute or combination of attributes that uniquely identifies a row in a relation?
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?

FROM Registration WHERE
Consider the following relational algebraic expression: Which of the following SQL Course_Code = 'A4343';
statements is equivalent to this relational algebraic expression?

Consider the table for an employee database shown in the exhibit. What is the cardinality of the table?

The exhibit shows a table called Recreation Relation that relates a unique student identification number and a sports activity with a fee for participating in that activity. The Student_ID and Activity columns in the table are used together as a composite key. Which statement about the relation is correct?
Consider the entity-relationship (ER) diagram shown in the exhibit. Which type of relationship between the two entities is shown?

Which of the following best describes the information contained in the data dictionary (or system catalog)?
Your enterprise is developing a database system that will contain highly sensitive data. Security of the data will take priority over database processing speed. Which database protection technique should be employed?
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?
Which relational algebraic operation is used to select specific columns (attributes) from a relation?
Consider the Information Engineering diagram shown in the exhibit. Building_ID, R_ID, Room_Count and Room_Num are integer numbers, whereas Bldg_Name and Res_Name are represented by variable-length strings with a maximum of 20 characters. Location can be up to 50 characters long, and no building has more than 600 rooms. Which SQL statement best implements the BUILDING relation shown in this diagram?

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?
Which subset of Structured Query Language (SQL) is used to create and name database entities?
The creation of intermediate entities occurs during the logical database design phase for an enterprise. It is used to resolve which types of relationships?