Take Test: Week 2 Midterm Exam – Database Management ...
Take Test: Week 2 Midterm Exam – Database Management ...
1/26/25, 8:32 PM
Links
Database Management Systems ISM4212GR1-201132025 Week 2 Take Test: Week 2 Midterm Exam ?
Test Information
Description Respondus
Instructions
Timed Test This test has a time limit of 2 hours.You will be noti!ed when time expires, and you
may continue or submit.
Warnings appear when half the time, 5 minutes, 1 minute, and 30 seconds
remain.
Multiple Not allowed. This test can only be taken once.
Attempts
Force This test can be saved and resumed later. The timer will continue to run if you
Completion leave the test.
Your answers are saved automatically.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
61 62
https://keiseruniversity.blackboard.com/webapps/assessment/take/la…id=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 1 of 19
Take Test: Week 2 Midterm Exam – Database Management ... 1/26/25, 8:32 PM
A column that contains a unique identi!er for the rows of its own
table is called a key.
True
False
The description of a database's structure that is stored within the database itself is
called the "metadata."
True and Submit to save and submit. Click Save All Answers to save all answers.
Click Save
False
Multi-user databases are less complicated than single-user databases because the
work is distributed to many people.
True
False
True
False
https://keiseruniversity.blackboard.com/webapps/assessment/take/la…id=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 2 of 19
Take Test: Week 2 Midterm Exam – Database Management ... 1/26/25, 8:32 PM
True
False
True
False
True
False
The essence of normalization is taking a relation that has more than one theme and
breaking it into multiple relations that each have only one theme.
True
False
A relation is in !rst normal form if all of its non-key attributes are dependent on part
of the key.
True
False
QUESTION 11
https://keiseruniversity.blackboard.com/webapps/assessment/take/la…id=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 3 of 19
Take Test: Week 2 Midterm Exam – Database Management ... 1/26/25, 8:32 PM
QUESTION 11
2 points Saved
Which of the following are basic components of a database system?
the user
the database
https://keiseruniversity.blackboard.com/webapps/assessment/take/la…id=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 4 of 19
Take Test: Week 2 Midterm Exam – Database Management ... 1/26/25, 8:32 PM
OODBMS.
All of the above.
https://keiseruniversity.blackboard.com/webapps/assessment/take/la…id=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 5 of 19
Take Test: Week 2 Midterm Exam – Database Management ... 1/26/25, 8:32 PM
https://keiseruniversity.blackboard.com/webapps/assessment/take/la…id=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 6 of 19
Take Test: Week 2 Midterm Exam – Database Management ... 1/26/25, 8:32 PM
https://keiseruniversity.blackboard.com/webapps/assessment/take/la…id=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 7 of 19
Take Test: Week 2 Midterm Exam – Database Management ... 1/26/25, 8:32 PM
SELECT COUNT(*)
FROM EMPLOYEE
WHERE Salary < 30000;
SELECT *
FROM EMPLOYEE
WHERE Name LIKE 'Ja%';
SELECT COUNT(EmpNo)
FROM EMPLOYEE;
SELECT HireDate, COUNT(*)
FROM EMPLOYEE
WHERE Salary < 30000;
https://keiseruniversity.blackboard.com/webapps/assessment/take/la…id=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 8 of 19
Take Test: Week 2 Midterm Exam – Database Management ... 1/26/25, 8:32 PM
SELECT *
FROM EMPLOYEE
WHERE Name LIKE 'S%';
SELECT EmpNo
FROM EMPLOYEE
WHERE Name LIKE 'S';
SELECT *
FROM EMPLOYEE
WHERE Name LIKE 'S*';
None of the above.
https://keiseruniversity.blackboard.com/webapps/assessment/take/la…id=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 9 of 19
Take Test: Week 2 Midterm Exam – Database Management ... 1/26/25, 8:32 PM
SELECT *
FROM Name
WHERE EMPLOYEE LIKE 'S*';
SELECT EmpNo
FROM EMPLOYEE
WHERE Name LIKE 'S';
SELECT *
FROM EMPLOYEE
WHERE Name LIKE 'S%';
SELECT *
FROM EMPLOYEE
WHERE Name IN ['S'];
None of the above.
In a relation ________.
the order of the columns is important
more than one column can use the same name
https://keiseruniversity.blackboard.com/webapps/assessment/take/l…d=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 10 of 19
Take Test: Week 2 Midterm Exam – Database Management ... 1/26/25, 8:32 PM
QUESTION 38
https://keiseruniversity.blackboard.com/webapps/assessment/take/la…d=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 11 of 19
Take Test: Week 2 Midterm Exam – Database Management ... 1/26/25, 8:32 PM
QUESTION 38
1 points Saved
An arti!cial column added to a relation to serve as the primary
key is a(n) ________.
composite key
surrogate key
foreign key
candidate key
dependency
A relation ________.
has cells that hold only a single value
has no two identical rows
has columns containing data about attributes of the entity
has rows containing data about an entity
All of the above.
https://keiseruniversity.blackboard.com/webapps/assessment/take/l…d=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 12 of 19
Take Test: Week 2 Midterm Exam – Database Management ... 1/26/25, 8:32 PM
https://keiseruniversity.blackboard.com/webapps/assessment/take/l…d=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 13 of 19
Take Test: Week 2 Midterm Exam – Database Management ... 1/26/25, 8:32 PM
https://keiseruniversity.blackboard.com/webapps/assessment/take/l…d=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 14 of 19
Take Test: Week 2 Midterm Exam – Database Management ... 1/26/25, 8:32 PM
B and C
During the second step of the assessing table structure, you are
trying to determine ________.
multivalued dependencies
foreign keys
functional dependencies
A and B
A, B and C
https://keiseruniversity.blackboard.com/webapps/assessment/take/l…d=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 15 of 19
Take Test: Week 2 Midterm Exam – Database Management ... 1/26/25, 8:32 PM
https://keiseruniversity.blackboard.com/webapps/assessment/take/l…d=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 16 of 19
Take Test: Week 2 Midterm Exam – Database Management ... 1/26/25, 8:32 PM
Normalization
Querying
Denormalization
A and B
B and C
https://keiseruniversity.blackboard.com/webapps/assessment/take/la…d=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 17 of 19
Take Test: Week 2 Midterm Exam – Database Management ... 1/26/25, 8:32 PM
10pt
https://keiseruniversity.blackboard.com/webapps/assessment/take/l…d=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 18 of 19
Take Test: Week 2 Midterm Exam – Database Management ... 1/26/25, 8:32 PM
10pt
https://keiseruniversity.blackboard.com/webapps/assessment/take/l…d=_1892017_1&course_id=_539851_1&content_id=_33006337_1&step=null Page 19 of 19