Exam 9: Database Systems
Exam 1: Data Representation64 Questions
Exam 2: Data Representation63 Questions
Exam 3: Operating Systems47 Questions
Exam 4: Networks and the Internet62 Questions
Exam 5: Algorithms53 Questions
Exam 6: Programming Languages54 Questions
Exam 7: Software Engineering54 Questions
Exam 8: Data Abstractions53 Questions
Exam 9: Database Systems52 Questions
Exam 10: Computer Graphics47 Questions
Exam 11: Artificial Intelligence52 Questions
Exam 12: Theory of Computation51 Questions
Select questions type
What information is available from a relational database containing one relation with the attributes Name,Employee identification number,and Address that is not available from a database containing two relations,one with attributes Name and Address and the other with attributes Address and Employee identification number? Explain your answer.
(Essay)
4.7/5
(33)
Given the two relations X and Y below
draw the relation Result that would be produced by the following statements?
Temp ← JOIN X and Y where X.A > Y.D
Result ← PROJECT X.B,Y.C from Temp

(Short Answer)
4.7/5
(28)
Suppose a relation X had the attributes Name,EmployeeID,and Address.Complete the following statement to obtain a list of the names and addresses of all employees.
Result ← ___________________________________ from X
(Short Answer)
4.8/5
(33)
Which of the following data mining techniques would be applied when trying to identify common properties between different groups of shoppers?
(Multiple Choice)
4.9/5
(40)
Given the relation Employees containing the attributes Name,Address,and BirthDate,what question is answered by the following sequence of operations?
Temp ? SELECT from Employees where BirthDate < "January 4,1975"
Result? PROJECT Name from Temp
(Short Answer)
4.9/5
(32)
Given the relation Employees containing the attributes Name,Address,and CurrentJobID and the relation Jobs containing the attributes JobID,SkillRating,Department,what question is answered by the following SQL statement?
SELECT SkillRating
FROM Employees,Jobs
WHERE Employees.Name = "Joe Smith"
AND Employees.CurrentJobID = Jobs.JobID
(Short Answer)
4.9/5
(27)
Given the two relations X and Y below
what values would be retrieved by executing the following statement?
SELECT X.A,X.B,Y.C
FROM X,Y
WHERE X.A < Y.D

(Short Answer)
4.8/5
(31)
Which of the following data mining techniques would be applied when trying to identify any underlying heterogeneity within housing patterns in a community?
(Multiple Choice)
4.7/5
(34)
Place an X in the space before those issues that are not problems associated with data mining.Leave the other spaces blank.
_____ Cascading rollback
_____ Deadlock
_____ Incorrect summary problem
_____ Lost update problem
(Short Answer)
4.8/5
(38)
Which of the following accesses a database in terms of a database model?
(Multiple Choice)
4.8/5
(37)
Which of the following relational operations combine data from more than one relation?
(Multiple Choice)
4.8/5
(30)
If a database contained a relation containing information about individual people (name,address,birthday,etc.)and another relation containing information about music composers (name,style,education level,etc.),how would you extend the database's design to include links between each individual and his or her favorite composer?
(Essay)
4.9/5
(31)
Given the relation Parts containing the attributes PartName,PartNumber,and SupplierID as well as the relation Suppliers containing the attributes SupplierID,Address,FaxNumber,write a sequence of SELECT,PROJECT,and JOIN operations to obtain the supplier identifications and fax numbers for all the suppliers that supply the part whose part number is X4J26.
(Essay)
4.8/5
(34)
Given the two relations X and Y below
X: 2 5 Y: 1 3 2
what values would be in the tuple produced by the following statement?
Result ? JOIN X and Y where X.A < Y.D
(Short Answer)
4.8/5
(41)
Describe the distinction between class description and cluster analysis.
(Essay)
5.0/5
(33)
Which of the following describes only the portion of a database available to a particular user?
(Multiple Choice)
4.7/5
(40)
Given the relation Employees containing the attributes Name,Address,and CurrentJobID and the relation Jobs containing the attributes JobID,SkillRating,Department,what question is answered by the following sequence of operations?
Temp1 ? JOIN Employees and Jobs
where Employees.CurrentJobID = Jobs.JobID
Temp2 ? SELECT from Temp1 where Department = "Personnel"
Result ? PROJECT Name from Temp2
(Short Answer)
4.9/5
(35)
Which of the following features within a DBMS is not provided to maintain database integrity?
(Multiple Choice)
4.7/5
(35)
Given the three relations X,Y,and Z below
what values would be retrieved by executing the following statement?
SELECT X.B,Y.C,Z.F
FROM X,Y,Z
WHERE X.A > Y.D AND X.A = Z.E

(Short Answer)
4.8/5
(36)
Showing 21 - 40 of 52
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)