Javatpoint Logo
Javatpoint Logo

COMPUTER SCIENCE QUIZ - I: Part 3

Topic 3 - DATABASE MANAGEMENT SYSTEM

Q.1 Assume that R in an entity-relationship (ER) model is a many-to-one link between entity sets E1 and E2. Assume that E1 and E2 are totally involved in R and that E1's cardinality is higher than the cardinality of E2.

Which of the following statements regarding R is true?

  1. Every object in E1 has precisely one linked entity in E2.
  2. A specific entity in E1 is linked to multiple entities in E2.
  3. Each entity in E2 is linked to precisely one other entity in E1.
  4. Each entity in E2 is connected to a maximum of one entity in E1.

Ans. (a) Every object in E1 has precisely one linked entity in E2.

Explanation:

Given, E1 and E2 are participating Totally and |E1| > |E2|. The relation R is many-to-one.

The relationship can be observed from the given diagram.

COMPUTER SCIENCE QUIZ - I: Part 3

We can conclude that every object in E1 is linked to exactly one object in E2. Hence, (a) is the correct answer.


Q. 2 A and B entity types make up an ER model of a database. These are linked together by a relationship R that lacks an independent attribute. In which of the following scenarios is it possible to combine R's relational table with A's?

  1. R is a one-to-many relationship, and A participates totally in R.
  2. Relationship R is one-to-many, and A only partially participates in R.
  3. R is a many-to-one relationship, and A has complete involvement in R.
  4. R is a one-to-many relationship, and A is only partially involved in R.

Ans. (c) R is a many-to-one relationship, and A has complete involvement in R.

Explanation:

When the relation is one-to-many or many-to-one, we can merge the relationship table with the entity which is on the many side of the relationship by putting the primary key of the entity on one side as foreign key and priority is given to the entity which participates totally. Hence, we can conclude that option (c) is the correct answer.


Q. 3 Which of the following is INACCURATE in terms of the basic ER and relational models?

  1. An entity's attribute may take on more than one value.
  2. An entity's attribute may be composite.
  3. An attribute may have more than one value in a row of a relational table.
  4. An attribute in a row of a relational table can only have a single value or NULL.

Ans. (c) An attribute may have more than one value in a row of a relational table

Explanation:

In and relationship table, A cell cannot contain more than one value in it. For multivalued attributes, we create one more table.


Q. 4 Let's assume that E1 and E2 are two entities in an E/R diagram with basic single-valued properties. The relationships R1 and R2 between E1 and E2 are one-to-many and many-to-many, respectively. There are no unique properties shared by R1 and R2. How many minimum numbers of tables are needed in the relational model to represent this scenario?

  1. 2
  2. 3
  3. 4
  4. 5

Ans. (b) 3

Explanation:

The minimum number of tables required is as follows:

One table to represent E1,

One table to represent E2,

As R1 is a one-to-many relationship, we can represent it by placing the primary key of E1 into E2 as the foreign key.

And R2 is many-to-many relationship, we need one more table to represent this relationship.

Hence, minimum number of tables required is 3.


Q. 5 Which of the following claims regarding weak entity sets is FALSE?

  1. Weak entities may be automatically destroyed together with their strong entity.
  2. By not using the strong entity's key twice, the weak entity set prevents data duplication and the potential inconsistencies that result from doing so.
  3. In the absence of attributes from the strong entity set upon which it depends, a weak entity set lacks any primary keys.
  4. The relationships between tuples in a weak entity set and tuples in a strong entity set are not taken into account when partitioning tuples.

Ans. (d) The relationships between tuples in a weak entity set and tuples in a strong entity set are not taken into account when partitioning tuples.

Explanation: Weak entity sets those that do not process enough characteristics to create a primary key. Although it contains discriminator attributes (partial keys) that provide some information about the entity set, this information is insufficient to identify each tuple uniquely.

The lack of a weak entity set will result in duplication and potential contradictions because it reflects the logical structure of an entity's dependence on another and can be eliminated automatically when its strong entity is deleted.


Q. 6 Select the correct option.

  1. Super Key ⊆ Candidate Key ⊆ Primary Key
  2. Candidate Key ⊆ Super Key ⊆ Primary Key
  3. Primary Key ⊆Super Key ⊆ Candidate Key
  4. Primary Key ⊆ Candidate Key ⊆ Super Key

Ans. (d) Primary Key ⊆ Candidate Key ⊆ Super Key

Explanation:

All primary, candidate and Super keys are capable of uniquely identifying a tuple. The minimal super keys are called candidate keys, and one of the candidate keys is selected as the primary key.

Hence, the correct order is Primary Key ⊆ Candidate Key ⊆ Super Key.


Q. 7 The purpose of relational database schema normalization is NOT for

  1. lowering the number of joins needed to fulfil a query.
  2. removing data recorded in the database that is redundant in an uncontrolled way.
  3. eliminating a number of abnormalities that may be created by inserts and deletes.
  4. assuring the enforcement of functional dependencies.

Ans. (a) The purpose of relational database schema normalization is NOT for lowering the number of joins needed to fulfil a query.

Explanation:

Normalization - In order to accomplish the desired features of eliminating duplication using Decomposition, the normalization of data (Decomposition of Relation) can be viewed as a process of assessing the relation schema that has been provided. Normalization removes redundant data, assures the enforcement of function dependencies and eliminates abnormalities. The idea of joining is altogether a different story.


Q. 8 If a relationship exists in both 2NF and 3NF forms, then:

  1. No non-prime attribute depends on any other non-prime attributes
  2. There is no functional dependency from a non-prime attribute to a prime attribute.
  3. Every attribute is independently functional.
  4. No functional dependencies exist from a prime attribute to all non-prime attributes.

Ans. (a) If a relationship exists in both 2NF and 3NF forms, then No non-prime attribute depends on any other non-prime attributes.


Explanation:

Partial dependencies are removed in 2NF, and transitive dependencies are removed in 3NF. Partial dependency occurs when a non-prime attribute depends on a subset of any candidate key and transitive dependency occurs when a non-prime attribute depends on another non-prime attribute. Hence, (a) is the correct answer.

Q. 9 Take into account the relationship schema below. Every non-trivial functional dependency for the schema is listed below. The underlined attribute is the primary key.

Enrollment (rollno, courseid, email)

Non-trivial functional dependencies:

rollno, courseid → email

email → rollno

Select the correct option:

  1. The schema is in 1NF but not in 2NF
  2. The Schema is in 2NF but not in 3NF
  3. The Schema is in 3NF but not in BCNF
  4. The Schema is in BCNF but not in 4NF

Ans. (c) The schema is in 3NF but not in BCNF

Explanation:

The following are the candidate keys for the given schema:

  1. (rollno, courseid), and
  2. (email, courseid)

Given, there is a functional dependency: email → rollno, but email is not a super key. We can say that this schema is not in BCNF.

Also, all the attribute rollno, courseid, and email all are the prime attributes and there is no functional dependency from non-prime to non-prime attribute. We can say that the schema is in 3NF.

Hence, option (c) is the correct answer.


Q. 10 Consider a relationship R(a, b, c, d) where a, b, c, and d are simple single valued attributes. The following functional dependency exist among these attributes a → c and b → d. Identify the normal form of the relationship.

  1. 1 NF
  2. 2 NF
  3. 3 NF
  4. BCNF

Ans. (a).

Explanation:

Given Function Dependencies are a → c and b → d and 'ab' will be the candidate key.

Both the dependencies are the simple example of partial dependencies where non-prime attributes (c and d) are dependent on the subset of the candidate key. Which clearly violates the condition of 2 NF.

Hence, (a) is the correct answer.


Q. 11 The relationship table obtained from the ER diagram will always be in

  1. 1 NF
  2. 2 NF
  3. 3 NF
  4. BCNF

Ans. (a) 1 NF

Explanation:

The table obtained from ER diagram will always be in 1NF and to eliminate redundant data, we can normalize the table.


Q. 12 Data that enhances the database's usability and performance are referred to as

  1. Data Dictionary
  2. Indexes
  3. Application Meta Data
  4. User Data

Ans. (b) Indexes

Explanation:

Indexes are use to increase tha database performance and searching ability.


Q. 13 B + Trees are regarded as BALANCED because

  1. all of the pathways from the root to the leaf nodes are the same length.
  2. there is a maximum one-length difference between all of the paths from the root to the leaf nodes.
  3. any two non-leaf sibling nodes can have a maximum of one difference in the number of their children.
  4. the difference between any two leaf nodes in terms of records is at most 1.

Ans. (a) B + Trees are regarded as BALANCED because all of the pathways from the root to the leaf nodes are the same length.

Explanation: The length of the paths from the root to all leaves are always equal because it grows in a bottom-up fashion. Hence, (a) is the correct answer.


Q. 14 What is the main reason B+ trees are preferred over binary search trees when indexing database relations?

  1. The records for database relations are numerous.
  2. The primary key is used to sort database relations.
  3. Binary search trees need more memory than B+ trees.
  4. Block-based data transmission from drives is used.

Ans. (d) Block-based data transmission from drives is used

Explanation: B+ tree are Balanced tree and block-based data transmission from drives can be easily done using B+ trees.


Q. 15 Which of the subsequent statements is true?

  1. B+ trees are used for main memory, while B trees are used for disc storage.
  2. On B+ trees, range searches are quicker.
  3. B++ trees are used for secondary indexes, while B-trees are used for primary indexes.
  4. Regardless of the quantity of records, a B+ tree always has the same height.

Ans. (b) On B+ trees, range searches are quicker

Explanation: In B+ trees, each leaf node store a pointer to next leaf node which makes the range query or searching faster.


Q. 16 Which of the following claims regarding the B+ tree data structure, which is used to build an index of a relational database table, is FALSE?

  1. A pointer to the subsequent leaf node is present at each leaf node.
  2. Nodes that are not leaves have pointers to data records.
  3. Height-balanced trees include B+ Tree.
  4. Every node maintains sorted order for its key values.

Ans. (b) Nodes that are not leaves have pointers to data records.

Explanation:

Each non-leaf nodes contain key values and pointer to its children. Whereas each leaf node contains key values, pointer to the data record and pointer to the subsequent leaf node.

Hence, statement (b) is false.


Q. 17 Which of the following situations could result in an unrecoverable error in a database system?

  1. A transaction reads a data object updated by an uncommitted transaction.
  2. A transaction reads a data object read by another uncommitted transaction.
  3. A transaction reads a data item updated by a committed transaction
  4. A transaction updates a data item read by and an uncommitted transaction

Ans. (a) A transaction reads a data object updated by an uncommitted transaction will lead to the database in unrecoverable state.

Explanation: When a transaction reads a data object updated by another uncommitted transaction called dirty read and if any failure occurs, the database become unrecoverable.


Q. 18 Take a look at the given schedules S1 and S2, along with the transactions T1, T2, and T3.

T1: r1(X); r1(Z); w1(X); w1(Z)

T2: r2(Y); r2(Z); w2(Z)

T3: r3(Y); r3(X); w3(Y)

S1
T1 T2 T3
R1(x)
R3(Y)
R3(X)
R2(Y)
R2(Z)
W3(Y)
W2(Z)
R1(Z)
W1(X)
W1(Z)
S2
T1 T2 T3
R1(x)
R3(Y)
R2(Y)
R3(X)
R1(Z)
R2(Z)
W3(Y)
W1(X)
W2(Z)
W1(Z)

Out of the following schedule-related claims, which one is TRUE?

  1. Only S1 is conflict Serializable
  2. Only S2 is Conflict Serializable
  3. Both S1 and S2 are Conflict Serializable
  4. Neither S1 nor S2 are conflict Serializable.

Ans. (a) Only S1 is Conflict Serializable.

Explanation: Schedule s1 is conflict Serializable because we can obtain a serial schedule by swapping the non-conflicting instruction of T1, T2 and T3 and the order will be T2 -> T3 -> T1.

Whereas, it is not possible in Schedule S2. T1 is dependent on T2 and T2 is dependent on T1. As there is dependency cycle, we can say that the S2 is not conflict serializable.

Hence, (a) is the correct answer.


Q. 19 Which of the following is not a part of ACID properties of a transaction?

  1. Atomicity
  2. Consistency
  3. Isolation
  4. Deadlock-Prevention

Ans. (d) Deadlock Prevention.

Explanation: Atomicity, Consistency, Isolation and Durability are called the ACID property. Deadlock-prevention is not a part of it.


Q. 20 Which of the subsequent claims is FALSE?

  1. Deadlocks are a problem with 2-phase locking protocols.
  2. The number of aborts is higher for Time-Stamp Protocols.
  3. Cascading rollback is a problem with Time-Stamp Protocols, but it is not with 2-Phase Locking Protocol.
  4. None of these

Ans. (c) Cascading rollback is a problem with Time-Stamp Protocols, but it is not with 2-Phase Locking Protocol

Explanation: Two-phase locking suffers from cascading roll-backs and does not ensure deadlock freedom.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA