Latest 2026/2027 Update
Data Management Foundations
Questions and Verified Answers | 100% Correct | Grade A
Western Governors University - CBE Aligned
75 7 100%
Verified Questions Blueprint Sections Grade A Target
EXAM BLUEPRINT OVERVIEW
Section Content Domain Questions
S1 Database Concepts and Architecture Q1-12
S2 Relational Model and Terminology Q13-25
S3 Entity-Relationship (ER) Modeling Q26-35
S4 Data Normalization Q36-50
S5 SQL Fundamentals Q51-60
S6 SQL Query Operations Q61-70
S7 Advanced Database Concepts Q71-75
Cover
,WGU D426 Study Guide | Data Management Foundations | 75 Q&As
Aligned with WGU D426 Curriculum & Latest 2026/2027 Exam Blueprint
Competency-Based Education (CBE) Aligned | Pre-Assessment & OA Difficulty
Western Governors University | 2026/2027 Exam Blueprint Page 2
,WGU D426 Study Guide | Data Management Foundations | 75 Q&As
Section 1: Database Concepts and Architecture
Q1-12
Focus: Database Purpose, Data vs. Information, DBMS, Data Models, Metadata, & Database Design Phases
Q1
A university registrar is replacing a spreadsheet-based system with a relational database. Which
advantage best justifies this transition from the perspective of data management foundations?
A. Spreadsheets provide faster data entry than databases for all use cases.
B. Databases reduce data redundancy and enforce data integrity through constraints and relationships.
[CORRECT]
C. Databases require no administrator and are inherently more secure than spreadsheets.
D. Spreadsheets and databases are functionally identical; the change is purely cosmetic.
Correct Answer: B. Databases reduce data redundancy and enforce data integrity through constraints and
relationships.
Rationale:
A relational database reduces data redundancy through normalization and enforces data integrity via primary keys,
foreign keys, and constraints such as NOT NULL and CHECK. Spreadsheets lack enforced relationships and are prone
to update anomalies and inconsistent duplicate values. Option A is incorrect because spreadsheets are not universally
faster, especially for multi-user or large-scale data. Option C is wrong because databases do require administrators and
are not inherently secure without configuration. Option D is wrong because the differences are functional, not cosmetic.
This reflects the WGU D426 emphasis on DBMS advantages and structured data management.
Q2
An instructor states that the number 3.14 stored in a database is data, but the statement that pi is
approximately 3.14 is information. Which concept does this best illustrate?
A. The distinction between metadata and schema.
B. The distinction between data (raw facts) and information (processed, meaningful data).
[CORRECT]
C. The distinction between a tuple and an attribute.
D. The distinction between a heap table and a sorted table.
Correct Answer: B. The distinction between data (raw facts) and information (processed, meaningful
data).
Rationale:
Data refers to raw, unprocessed facts (such as the value 3.14) that lack context on their own. Information is data that has
been processed, organized, or contextualized to be meaningful (such as the statement that pi is approximately 3.14).
Option A is wrong because metadata is data about data (e.g., column names and types), not the data-versus-information
distinction. Option C confuses relational terminology (tuples and attributes) with the data-information distinction.
Option D refers to physical storage structures, not the conceptual difference. WGU D426 stresses that this distinction is
foundational to understanding the purpose of databases.
Q3
Which of the following is a core function of a Database Management System (DBMS)?
Western Governors University | 2026/2027 Exam Blueprint Page 3
, WGU D426 Study Guide | Data Management Foundations | 75 Q&As
A. Compiling source code into executable binaries.
B. Defining, constructing, manipulating, and sharing data among users and applications. [CORRECT]
C. Generating network packets for routing between subnets.
D. Rendering graphical user interfaces for desktop operating systems.
Correct Answer: B. Defining, constructing, manipulating, and sharing data among users and applications.
Rationale:
A DBMS provides four core functions: defining data (DDL), constructing or storing data, manipulating data
(DML/DQL), and sharing data among multiple users and applications with concurrency control. Option A describes a
compiler, not a DBMS. Option C describes networking protocols handled by operating systems. Option D describes UI
rendering libraries. WGU D426 emphasizes that the DBMS acts as an intermediary between users/applications and the
physical database, enabling efficient, secure, and consistent data management.
Q4
A database designer is documenting that the Customer table contains columns named CustomerID,
FirstName, LastName, and Email, with types integer, varchar, varchar, and varchar
respectively. This documentation is best described as:
A. An instance of the database.
B. Metadata, because it describes the structure and properties of the data. [CORRECT]
C. A transaction log.
D. A query result set.
Correct Answer: B. Metadata, because it describes the structure and properties of the data.
Rationale:
Metadata is data about data, describing the structure, types, and properties of data elements rather than the data values
themselves. Documenting column names and types is a classic example of metadata, often stored in the database catalog
or data dictionary. Option A is wrong because an instance refers to the actual data values stored at a point in time, not
the structure. Option C is wrong because a transaction log records changes, not structure. Option D is wrong because a
query result set contains actual data values. WGU D426 stresses metadata as a critical concept in data management.
Q5
During the database design process, which phase involves creating the conceptual schema using
entity-relationship diagrams before any physical implementation?
A. Physical design phase.
B. Conceptual design phase. [CORRECT]
C. Implementation phase.
D. Testing and deployment phase.
Correct Answer: B. Conceptual design phase.
Rationale:
The conceptual design phase produces a high-level, technology-independent model of the data, typically using
entity-relationship (ER) diagrams to capture entities, attributes, and relationships. This phase precedes the logical design
(where the relational model is derived) and the physical design (where storage structures and indexes are specified).
Option A is wrong because physical design specifies storage structures, file organizations, and indexes on a specific
DBMS. Option C is wrong because implementation involves writing and executing DDL to create actual tables. Option
Western Governors University | 2026/2027 Exam Blueprint Page 4