📑 CHAPTER PRACTICE

CS403 - Database Management Systems – Database Architecture

Practice 10 verified multiple choice questions per batch with instant answer reveal and comprehensive solutions.

Showing 16 of 6 Questions
Page 1 of 1
Q1🧠 Long Problem📑 Lec 3Hard🔁RepeatedHigh-Yield💡Conceptual
Why is the standardization of database systems necessary? Discuss its benefits in terms of three-level database architecture.
Q2❓ MCQ📑 Lec 3Medium🔁RepeatedHigh-Yield💡Conceptual
Which of the following represents a primary drawback of standardization in database management systems?
  1. A.Difficult to understand
  2. B.Uniformity
  3. C.Lack of uniqueness
  4. D.Easy to develop applications
Q3❓ MCQ📑 Lec 3Easy🔁RepeatedHigh-Yield💡Conceptual
The DIFFERENCE between two sets (Set A and Set B) is defined as all elements belonging to Set A but not to Set B. What is the notation for this relational algebra operation?
💻 sql Snippet
SELECT * FROM TableA EXCEPT SELECT * FROM TableB;
  1. A.A – B
  2. B.B - A
  3. C.A + B
  4. D.B + A
Q4❓ MCQ📑 Lec 3Easy🔁RepeatedHigh-Yield💡Conceptual
The process of combining data from two or more tables in a relational database based on a related attribute is known as a ________.
💻 sql Snippet
SELECT * FROM TableA INNER JOIN TableB ON TableA.id = TableB.a_id;
  1. A.a Join
  2. B.a Combine
  3. C.a Relate
  4. D.a Construct
Q5❓ MCQ📑 Lec 3Easy🔁RepeatedHigh-Yield💡Conceptual
In relational algebra, the UNION operation between two sets (Set A and Set B) corresponds to which logical operation?
💻 sql Snippet
SELECT * FROM TableA UNION SELECT * FROM TableB;
  1. A.A OR B
  2. B.A AND B
  3. C.A + B
  4. D.A - B
Q6❓ MCQ📑 Lec 3Easy🔁RepeatedHigh-Yield💡Conceptual
In relational algebra, the INTERSECTION operation between two union-compatible relations Set A and Set B selects tuples that belong to ________.
💻 sql Snippet
SELECT * FROM TableA INTERSECT SELECT * FROM TableB;
  1. A.Both Set A AND Set B
  2. B.Either Set A OR Set B
  3. C.Set A MINUS Set B
  4. D.Set B MINUS Set A