Question 1
Question 2
For the relation R(ABCDEFGH) with FD's= {CH->G, A->BC, B->CHF, E->A, F->EG such that F+ is exactly the set of FDs that hold for R.} Consider the FDs given in above question. The relation R is
in 1NF, but not in 2NF.
in 2NF, but not in 3NF.
in 3NF, but not in BCNF.
in BCNF
Question 3
Consider a relational table with a single record for each registered student with the following attributes.
1. Registration_Num: Unique registration number
of each registered student
2. UID: Unique identity number, unique at the
national level for each citizen
3. BankAccount_Num: Unique account number at
the bank. A student can have multiple accounts
or join accounts. This attribute stores the
primary account number.
4. Name: Name of the student
5. Hostel_Room: Room number of the hostel
Which one of the following option is INCORRECT?
BankAccount_Num is candidate key
Registration_Num can be a primary key
UID is candidate key if all students are from the same country
If S is a superkey such that S∩UID is NULL then S∪UID is also a superkey
Question 4
Consider the following relational schema:
Suppliers(sid:integer, sname:string, city:string, street:string)
Parts(pid:integer, pname:string, color:string)
Catalog(sid:integer, pid:integer, cost:real)
Assume that, in the suppliers relation above, each supplier and each street within a city has a unique name, and (sname, city) forms a candidate key. No other functional dependencies are implied other than those implied by primary and candidate keys. Which one of the following is TRUE about the above schema?
The schema is in BCNF
The schema is in 3NF but not in BCNF
The schema is in 2NF but not in 3NF
The schema is not in 2NF
Question 5
Question 6
Question 7
Consider the following table : Faculty (facName, dept, office, rank, dateHired)
facName | dept | office | rank | dateHired |
---|---|---|---|---|
Ravi | Art | A101 | Professor | 1975 |
Murali | Math | M201 | Assistant | 2000 |
Narayanan | Art | A101 | Associate | 1992 |
Lakshmi | Math | M201 | Professor | 1982 |
Mohan | CSC | C101 | Professor | 1980 |
Lakshmi | Math | M201 | Professor | 1982 |
Sreeni | Math | M203 | Associate | 1990 |
Tanuja | CSC | C101 | Instructor | 2001 |
Ganesh | CSC | C105 | Associate | 1995 |
(Assume that no faculty member within a single department has same name. Each faculty member has only one office identified in
office
). 3NF refers to third normal form and BCNF refers to Boyee-Codd Normal Form Then Faculty is
Not in 3NF, in BCNF
In 3NF, not in BCNF
In 3NF, in BCNF
Not in 3NF, not in BCNF
Question 9
Question 10
Consider the following dependencies and the BOOK table in a relational database design. Determine the normal form of the given relation.
ISBN → Title
ISBN → Publisher
Publisher → Address
First Normal Form
Second Normal Form
Third Normal Form
BCNF
There are 89 questions to complete.