Answers correct
What is a datbase? - answerA structured collection of data
Which component is responsible for executing instructions from the query processor? -
answerStorage engine
The BETWEEN operator checks if a value is: - answerBetween an inclusive range of
two values
Which relationship involves a salesperson and products they sell? - answerBinary
What does the 'many' in a 1-M relationship imply? - answerNo exact numerical limit but
more than one
MySQL architecture is organized into how many layers? - answerFour
In a unary relationship, what kind of relationship is described? - answerA relationship
where an entity is related to itself
What does modality represent in an ER Diagram? - answerThe minimum number of
entity occurrences that can be involved in a relationship
Which storage media has the fastest access time? - answerMain memory (RAM)
Which of the following is NOT a characteristic of a database system? - answerStores
data in an unstructured format
Which SQL command is used to delete a table? - answerDROP TABLE
MySQL Workbench is designed for: - answerBoth database administrators and users
What is a primary function of a Database Management System (DBMS)? -
answerManaging database security and access
What is an associative entity? - answerAn entity that is used to represent a many-to-
many relationship with attributes
The IN operator is used in a WHERE clause to: - answerCheck if a value matches any
value in a list
, What does CRUD stand for in the context of database operations? - answerCreate,
Read, Update, Delete
What is an entity in an ER model? - answerA person, place, product, concept, or activity
What does a unique attribute signify in ER modeling? - answerAn attribute that identifies
each entity instance uniquely
What is a composite attribute? - answerAn attribute that can be divided into smaller
parts, each representing a more basic attribute
Which of the following best represents a ternary relationship? - answerA relationship
involving three different entity types
Which operation combines rows from two tables based on related columns? -
answerJOIN
What characterizes a table cluster? - answerInterleaves rows of two or more tables in
the same storage area.
Who introduced the relational model? - answerE.F. Codd
What is the term for a row in a relational database? - answerTuple
_______________ ensures the consistency and validity of relationships between tables.
It dictates that foreign key values in one table must either be null or match primary key
values in another table (or the same table in the case of self-referencing relationships) -
answerReferential integrity
In SQL, which command is used to add a row of new data into a table? -
answerINSERT INTO
To convert a string to lower case in SQL, which function is used? - answerLOWER()
What describes the 'heap table' structure's approach to managing free space after row
deletion? - answerTracks free space as a linked list for future inserts
What is the purpose of an ER Diagram? - answerTo visually represent the data model
of a system
What is the main advantage of a sorted table? - answerOptimal for queries that read
data in sort order
What does the cardinality of a relationship indicate? - answerThe maximum and
minimum number of entity instances that can be involved in a relationship