Sample Quiz

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

A collection of concepts that can be used to describe the structure of a database

  • Data model (correct)
  • Logical data independence
  • Database state/snapshot/instance
  • Valid state

The data in the database at a particular moment in time

  • Query optimizer
  • Physical data independence
  • Database state/snapshot/instance (correct)
  • Valid state

The capacity to change the internal schema without having to change the conceptual schema

  • Valid state
  • Logical data independence
  • Physical data independence (correct)
  • Query optimizer

The capacity to change the conceptual schema without having to change external schemas or application programs

<p>Logical data independence (C)</p> Signup and view all the answers

A database software component that concerns with the rearrangement and possible reordering of operations, elimination of redundancies, and use of efficient search algorithms during execution

<p>Query optimizer (C)</p> Signup and view all the answers

A state that satisfies the structure and constraints specified in the database schema

<p>Valid state (C)</p> Signup and view all the answers

Which of the following is a conceptual data model used in database design?

<p>Entity-Relationship (ER) model (A)</p> Signup and view all the answers

Which of the following statements are false to good database design principles?

<p>Logical database constraints should be imposed gradually as future data becomes more visible (C), Always prefer a strong entity type than a weak one (D)</p> Signup and view all the answers

Which of the following is an example of an improper minimal key in an Entity-Relationship (ER) model?

<p>Using a set of attributes that does not uniquely identify each instance of an entity (C)</p> Signup and view all the answers

Why do we need a weak entity type in an Entity-Relationship (ER) model?

<p>To model entity types that cannot be uniquely identified by its own attributes. (C)</p> Signup and view all the answers

A DBMS should provide security protection against hardware or software malfunction as a critical function to the users.

<p>True (A)</p> Signup and view all the answers

An attribute that exists in several entity types may be elevated or promoted to an independent entity type.

<p>True (A)</p> Signup and view all the answers

The schema of a database often changes frequently to represent the users' requirements.

<p>False (B)</p> Signup and view all the answers

A database always starts out in an empty state when it’s first created.

<p>True (A)</p> Signup and view all the answers

A complicated attribute is an attribute type in ER modeling.

<p>False (B)</p> Signup and view all the answers

The three-tier client-server architecture is commonly adopted by a web application that has a database component.

<p>True (A)</p> Signup and view all the answers

A DBMS always rely on the computer OS to schedule disk read/write operations.

<p>False (B)</p> Signup and view all the answers

A document-based data model is a form of a NOSQL system.

<p>True (A)</p> Signup and view all the answers

Derived attributes are always stored permanently in a DBMS.

<p>False (B)</p> Signup and view all the answers

Relationship types are not allowed to have local attributes.

<p>False (B)</p> Signup and view all the answers

Which of the following data types is NOT typically supported by a DBMS?

<p>Real-time Video Stream (C)</p> Signup and view all the answers

Which of the following statements regarding Conceptual Data Model, Logical/Implementational Data Model, and Physical Data Model are FALSE? Select all that apply.

<p>None of the above. (D)</p> Signup and view all the answers

In the ER model, when an entity type does not have key attributes of its own and cannot be identified without an owner entity, it is referred to as a:

<p>Weak entity type. (A)</p> Signup and view all the answers

Given the following entity type ClassRegistration, which of the following are valid minimal key candidates for uniquely identifying each entity in the set. Select all that apply.

Entity: ClassRegistration

Attributes:

RegistrationID (unique for each registration) StudentID (unique for each student) CourseID (unique for each course) Semester RegistrationDate

<p>RegistrationID (A), (RegistrationID, StudentID, CourseID) (C), (StudentID, CourseID) (B)</p> Signup and view all the answers

In the ER model, when an attribute of one entity refers to another entity type, it should be represented as a relationship rather than an attribute.

<p>True (A)</p> Signup and view all the answers

If the subclasses of a superclass are disjoint, what does it mean?

<p>Each member of a subclass is strictly a member of that subclass and no other. (B)</p> Signup and view all the answers

Which of the following is true about a subclass/superclass in an ER diagram?

<p>A subclass is a type of entity that inherits all the attributes and relationships of its superclass. (A)</p> Signup and view all the answers

Which of the following is NOT a concept introduced in the EER model?

<p>normalization/denormalization (D)</p> Signup and view all the answers

Suppose we have a superclasss entity called "Vehicle" with attributes "Make", "Model", "Year", and "VIN". It is appropriate for it to also have a subclass entity called "Car" with attributes "Number of Doors" and "Color".

<p>True (A)</p> Signup and view all the answers

Suppose we have a superclasss entity called "Vehicle" with attributes "Make", "Model", "Year", and "VIN". It is appropriate for it to also have another subclass entity called "Driver" with attributes "Name", "Age", and "License Number". This is because we want to represent which drivers are authorized to drive which vehicles.

<p>False (B)</p> Signup and view all the answers

In the context of Relational Model, a domain is a set of atomic values, which means that each value in the domain is indivisible.

<p>True (A)</p> Signup and view all the answers

The following relation schema has a degree (or arity) of 8:

STUDENT(Ssn, Name, Home_phone, Address, Office_phone, Age, Gpa)

<p>False (B)</p> Signup and view all the answers

Each unique attribute in the same relation R must have different data types and domains.

<p>False (B)</p> Signup and view all the answers

If two tuples have NULL values for an attribute (e.g. Address), then they are still comparable.

<p>False (B)</p> Signup and view all the answers

What is the purpose of the entity integrity constraint/primary key constraint in a relational database?

<p>To ensure that each row in a table is unique. (A)</p> Signup and view all the answers

Select all the statements that are true from the following:

<p>A (minimal) key is a superkey by default. (A), A superkey is a set of one or more attributes in a relation that uniquely identifies each tuple. (B)</p> Signup and view all the answers

Which of the following is NOT a valid approach for mapping an EER superclass/subclass structure to a relational model?

<p>Table per Attribute (D)</p> Signup and view all the answers

What is a drawback of using the Single Table approach?

<p>Excessive NULL values (A)</p> Signup and view all the answers

If a relation R(A, B, C, D) has 100 rows and you apply σ(A = 'X')(R), which of the following is true?

<p>The result may have fewer than 100 rows (B)</p> Signup and view all the answers

If a relation R(A, B, C, D) has 100 rows and you apply π(A, C)(R), which of the following is true?

<p>The result may have fewer than 100 rows (A)</p> Signup and view all the answers

What is a similarity between Selection (σ) and Projection (π)?

<p>Both can reduce the number of rows (C)</p> Signup and view all the answers

Flashcards

Capital of France (example flashcard)

Paris

More Like This

Sample Quiz
20 questions

Sample Quiz

EffectiveTopology2534 avatar
EffectiveTopology2534
Sample Quiz
20 questions

Sample Quiz

EffectiveTopology2534 avatar
EffectiveTopology2534
Sample Quiz
47 questions

Sample Quiz

UndisputableCommonsense6303 avatar
UndisputableCommonsense6303
Sample Quiz
56 questions

Sample Quiz

SpotlessMoldavite5740 avatar
SpotlessMoldavite5740
Use Quizgecko on...
Browser
Browser