QN01. Given the relation
Supplier(s_id, p_order, s_name, qty)
Given that there is a unique s_name for each s_id and that s_id, p_order is a
composite key, find the correct statement among the following:
- this relation is a BCNF
- this is 3 NF relation
- this is a 2 NF relation
- this is a 1 NF relation
- i and ii
- ii and iii
- i and iv
- i and iii
Answer
(D)i and iii
QN02. The relation SUPPLIES in Mini-case example 1 of Section 10.10 requires normalization because
- it has a composite key with three attributes
- the non-key attributes are dependent on part of composite key
- the attributes item code and order no of the composite key have multivalued dependency
- vendor code and order no have a multivalued dependency
Answer
(C)the attributes item code and order no of the composite key have multivalued dependency
QN03. The abbreviation DBMS stands for
- Data Base Manipulation System
- Data Bank Manipulating System
- Data Base Management System
- Data Bank Management System
Answer
(C)Data Base Management System
QN04. Among objectives of DBMS are ensuring
- data integrity
- data redundancy
- data security
- easy data retrieval
- i, ii
- i, iii
- i, iii, iv
- i, ii, iii
Answer
(C)i, iii, iv
QN05. When a logical model is mapped into a physical storage such as a disk store the resultant data model is known as
- conceptual data model
- external data model
- internal data model
- disk data model
Answer
(C)internal data model
QN06. The sequence followed in designing a DBMS are
- physical model conceptual model logical model
- logical model physical model conceptual model
- conceptual model logical model physical model
- conceptual model physical model logical model
Answer
(C)conceptual model logical model physical model
QN07. Pick the relationship from the following:
- a classroom
- teacher
- attends
- cost per dozen
Answer
(C)attends
QN08. The expansion of E-R diagram is
- Entity-Relationship diagram
- Entity-Relative diagram
- Entity-Relation diagram
- Entity-Rationalized diagram
Answer
(A)Entity-Relationship diagram
QN09. A pilot can fly three types of planes and a plane can be piloted by any qualified pilot. The pilot-plane type relationship is
- N:3
- 3:N
- 1:3
- 3:1
Answer
(A)N:3
QN10. Normalization is a process of restructuring a relation to
- minimize duplication of data in a database
- maximize duplication of data to ensure reliability
- make it of uniform size
- allow addition of data
Answer
(A)minimize duplication of data in a database
QN11. The number of normal forms which has been proposed and discussed in the book are
- 3
- 4
- 5
- 6
Answer
(D)6
QN12. A third Normal Form (3 NF) relation should
- be in 2 NF
- not have complete key
- not be 1 NF
- should not have non-key attributes depend on key attribute
Answer
(A)be in 2 NF
QN13. BCNF is needed because
- otherwise tuples may be duplicated
- when a data is deleted tuples may be lost
- updating is otherwise difficult
- when there is dependent attributes in two possible composite keys one of the attributes is unnecessarily duplicated in the tuples
Answer
(D)when there is dependent attributes in two possible composite keys one of the attributes is unnecessarily duplicated in the tuples
QN14. TEACHES-COURSES relation in Mini-case example 2 is in
- 3 NF. Does not need any further normalization
- BCNF
- 4 NF
- unnormalized form
Answer
(A)3 NF. Does not need any further normalization
QN15. Some of the objectives of a database management system are to
- minimize duplication of data
- ensure centralized management control of data
- ease retrieval of data
- maintain a data dictionary
- i and ii
- i, ii and iv
- i and iii
- i, ii and iii
Answer
(D)i, ii and iii
QN16. Data independence allows
- no changes in application programs
- change in database without affecting application programs
- hardware to be changed without affecting application programs
- system software to be changed without affecting application programs
- i, ii
- ii, iii
- ii, iii, iv
- i, ii, iv
Answer
(C)ii, iii, iv
QN17. An E-R modelling for given application leads to
- conceptual data model
- logical data model
- external data model
- internal data model
Answer
(A)conceptual data model
QN18. The responsibilities of a database administrator includes
- maintenance of data dictionary
- ensuring security of database
- ensuring privacy and integrity of data
- obtain an E-R model
- i, ii
- i, ii, iii
- i, ii, iii, iv
- ii, iii, iv
Answer
(B)i, ii, iii
QN19. Pick the meaningful relationship between entities
- vendor supplies goods
- vendor talks with customers
- vendor complains to vendor
- vendor asks prices
Answer
(A)vendor supplies goods
QN20. In an E-R diagram relationship is represented by
- circles
- rectangles
- diamond shaped box
- ellipse
Answer
(C)diamond shaped box
QN21. If an entity appears in only one relationship then it is
- a 1:1 relationship
- a 1:N relationship
- a N:1 relationship
- a N:M relationship
Answer
(A)a 1:1 relationship
QN22. Relations are used in logical database design because
- sound theory of relations facilitates systematic design of relational databases
- they are very popular
- they are flat files and easy to store and retrieve from computer's memory
- E-R diagrams allow design of relations
- i and ii
- i and iii
- ii and iii
- iii and iv
Answer
(B)i and iii
QN23. A relation is said to be in 1NF if
- there is no duplication of data
- there are no composite attributes in the relation
- there are only a few composite attributes
- all attributes are of uniform type
Answer
(B)there are no composite attributes in the relation
QN24. A relation is said to be in 2 NF if
- it is in 1 NF
- non-key attributes dependent on key attribute
- non-key attributes are independent of one another
- if it has a composite key, no non-key attribute should be dependent on part of the composite key
- i, ii, iii
- i and ii
- i, ii, iv
- i, iv
Answer
(C)i, ii, iv
QN25. Boye Codd Normal Form (BCNF) is needed when
- two non-key attributes are dependent
- there is more then one possible composite key
- there are two or more possible composite overlapping keys and one attribute of a composite key is dependent on an attribute of another composite key
- there are two possible keys and they are dependent on one another
Answer
(C)there are two or more possible composite overlapping keys and one attribute of a composite key is dependent on an attribute of another composite key
QN26. A relation project guidance
Project Guidance (professor, project, student no. st-name, dept)
A professor can give many projects to many students
A project will have many students
A project may be guided by many professors
The 4 NF relation corresponding to this are
- Prof_Project (professor, st_name, dept)
Proj_stud (project, student no.) - Prof_stud (professor, student no)
Proj_stud (project, student no)
Student (student no, st_name, dept) - Student (student no, st_name, dept)
Professor(professor, project) - Professor( professor, project, dept)
Student (student no, st_name, dept)
Answer
(B) Prof_stud (professor, student no)
Proj_stud (project, student no)
Student (student no, st_name, dept)
QN27. One of the main objectives of a DBMS is to
- Create a database for an organization
- Facilitate sharing of a database by current and future applications
- Allow sharing application programs
- Replace file based systems
Answer
(B)Facilitate sharing of a database by current and future applications
QN28. By data integrity we mean
- maintaining consistent data values
- integrated data values
- banning improper access to data
- not leaking data values
Answer
(A)maintaining consistent data values
QN29. A good database design
- caters primarily to current needs
- caters to current and future needs as organizations grow
- has to be modified when hardware is upgraded
- ensures data security
- i, ii
- i, ii, iii
- ii, iv
- iii, iv
Answer
(C)ii, iv
QN30. The entity set is a
- set of entities
- collection of different entities
- collection of related entities
- collection of similar entities
Answer
(D)collection of similar entities
QN31. By relation cardinality we mean
- number of items in a relationship
- number of relationships in which an entity can appear
- number of items in an entity
- number of entity sets which may be related to a given entity
Answer
(B)number of relationships in which an entity can appear
QN32. Normalization of database is essential to
- avoid accidental deletion of required data when some data is deleted
- eliminate inconsistencies when a data item is modified in the database
- allows storage of data in a computer's disk
- use a database management system
- i and iii
- i and ii
- ii and iii
- ii and iv
Answer
(B)i and ii
QN33. A second Normal Form (2 NF) relation should
- be in 1 NF
- not have a composite key
- not have attributes dependent on key attribute
- not have attributes dependent on one another
Answer
(A)be in 1 NF
QN34. Given the following relation
Student (roll no, name, course no, course max. marks, year of study, address)
The corresponding 3 NF relations are
- student (roll no, name, year of study, address)
course (course no, course max. marks) - student (roll no, name, year of study, address)
student (roll no, course no)
course (course no, course max. marks) - student (roll no, name, address)
year (roll no, year of study)
course (course no, course max. marks) - student (roll no, name, address)
course (course no, course max. marks, year of study)
Answer
(B) student (roll no, name, year of study, address)
student (roll no, course no)
course (course no, course max. marks)
QN35. The project guidance relation of Exercise 10.8.3 needs further normalization to 5 NF because
- There are too many multivalued dependencies
- Multivalued dependency and simple dependency are mixed in the 4 NF relation
- Spurious tuples got introduced when the 4 NF relations are combined due to the fact that a professor can guide only specified projects
- 4 NF relations have composite keys
Answer
(C)Spurious tuples got introduced when the 4 NF relations are combined due to the fact that a professor can guide only specified projects
QN36. Data availability is often difficult in file based system
- as files are duplicated
- as unnecessary data are stored in files
- as one has to search different files and these files may be in different update states
- redundant data are stored in files 8.5.4 Management policy changes are difficult to implement in a file based system because
Answer
(C)as one has to search different files and these files may be in different update states
QN37. A database models data so that it is
- appropriate for application
- independent of application program
- optimized for most frequent applications
- optimized for all applications
Answer
(B)independent of application program
QN38. Data integrity is ensured by
- good data editing
- propagating data changes to all data items
- preventing unauthorized access
- preventing data duplication
Answer
(B)propagating data changes to all data items
QN39. A check pointing system is needed
- to ensure system security
- to recover from transient faults
- to ensure system privacy
- to ensure system integrity
Answer
(B)to recover from transient faults
QN40. A good database design
- is expandable with growth and changes in organization
- easy to change when software changes
- ensures data integrity
- allows access to only authorized users
- i, ii
- ii, iii
- i, ii, iii, iv
- i, ii, iii
Answer
(C)i, ii, iii, iv