Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Document preview thumbnail
Preview 2 out of 5 pages
Exam (elaborations)

WGU D427 Practice Questions and Answers correct

Document preview thumbnail
Preview 2 out of 5 pages

WGU D427 Practice Questions and Answers correct What is a datbase? A structured collection of data Which component is responsible for executing instructions from the query processor? Storage engine The BETWEEN operator checks if a value is: Between an inclusive range of two values Which relationship involves a salesperson and products they sell? Binary What does the 'many' in a 1-M relationship imply? No exact numerical limit but more than one MySQL architecture is organized into how many layers? Four In a unary relationship, what kind of relationship is described? A relationship where an entity is related to itself What does modality represent in an ER Diagram? The minimum number of entity occurrences that can be involved in a relationship Which storage media has the fastest access time? Main memory (RAM) Which of the following is NOT a characteristic of a database system? Stores data in an unstructured format Which SQL command is used to delete a table? DROP TABLE MySQL Workbench is designed for: Both database administrators and users What is a primary function of a Database Management System (DBMS)? Managing database security and access What is an associative entity? An entity that is used to represent a many-to-many relationship with attributes The IN operator is used in a WHERE clause to: Check if a value matches any value in a list What does CRUD stand for in the context of database operations? Create, Read, Update, Delete What is an entity in an ER model? A person, place, product, concept, or activity What does a unique attribute signify in ER modeling? An attribute that identifies each entity instance uniquely What is a composite attribute? An attribute that can be divided into smaller parts, each representing a more basic attribute Which of the following best represents a ternary relationship? A relationship involving three different entity types Which operation combines rows from two tables based on related columns? JOIN What characterizes a table cluster? Interleaves rows of two or more tables in the same storage area. Who introduced the relational model? E.F. Codd What is the term for a row in a relational database? Tuple _______________ 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) Referential integrity In SQL, which command is used to add a row of new data into a table? INSERT INTO To convert a string to lower case in SQL, which function is used? LOWER() What describes the 'heap table' structure's approach to managing free space after row deletion? Tracks free space as a linked list for future inserts What is the purpose of an ER Diagram? To visually represent the data model of a system What is the main advantage of a sorted table? Optimal for queries that read data in sort order What does the cardinality of a relationship indicate? The maximum and minimum number of entity instances that can be involved in a relationship What is a primary feature of relational databases? Tables Which constraint ensures uniqueness in a table's column? PRIMARY KEY What does SQL stand for? Structured Query Language The MySQL Enterprise Edition includes components for: High-end commercial installations, like backup and security What is the main purpose of the MySQL Monitor in the Enterprise Edition? To collect and display system performance information Which function would you use to find the least/lowest value in a set? MIN() In which normal form are all non-key attributes fully functionally dependent on the primary key? 3NF The GROUP BY statement is used to: Aggregate rows of data based on a common criteria The storage engine in MySQL is also known as: Storage manager What describes data in terms of scope, format, and access? Data Characteristics What does the Audit component in MySQL Enterprise Edition track? All database changes, including time and user details What is the result of a SELECT statement? A set of tuples Which SQL command is used to create a new table? CREATE TABLE What is a significant disadvantage of table clusters for certain queries? Performs poorly for joins on non-cluster key columns How does a hash table determine the bucket containing each row? Using a hash function and hash key Which term describes the process of denormalization? Merging Tables A column in Table B has been indexed? Which action would cause the index to be updated? A row is deleted from Table B What does the query processor layer in MySQL do? Compiles queries into low-level instructions To calculate the square root of a number in SQL, you would use: SQRT() What is an attribute in the context of ER modeling? A descriptive property or characteristic of an entity To combine two or more columns or strings into a single string in SQL, you would use: CONCAT() Which of the following best describes the role of a database administrator? Designs the physical layout of data, Secures the database against unauthorized access , Monitors the database performance and makes adjustments to optimize it Which normal form removes partial dependencies? 2NF Which SQL statement is used to remove rows of data from a database? DELETE What is the purpose of the ON clause in SQL joins? Specifies the condition for the join between the two tables Which of the following best describes a strong entity? An entity that has a unique identifying attribute The LIKE operator is used to: Search for a specified pattern in a column To find the number of non-NULL rows in a column, you would use: COUNT() Which statement about NoSQL databases is true? They are optimized for big data In ER modeling, what describes the relationship between a salesperson and an office space/cubicle? One-to-One In which type of table is no specific order imposed on rows? Heap table Which symbol represents a one-to-many relationship in ER Diagrams? A crow's foot Which SQL function returns the current date? CURDATE()

Content preview

WGU D427 Practice Questions and
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

Document information

Uploaded on
August 3, 2025
Number of pages
5
Written in
2025/2026
Type
Exam (elaborations)
Contains
Questions & answers
$16.49

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
Pogba119
3.9
(14)
Sold
62
Followers
2
Items
5517
Last sold
5 days ago



Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions