WGU D426 Data Management Foundations ACTUAL
EXAM QUESTIONS AND ANSWERS 2026/2027 |
Study Guide with Verified Elaborations | Most Tested
Questions | Pass Guaranteed - A+ Graded
WGU D426 Data Management Foundations
Study Guide & Practice Exam
Competency 1: Data Management Concepts (15% - 18 Questions)
Key Concepts Summary:
Data: Raw facts without context
Information: Data processed to have meaning
Database: Organized collection of related data
DBMS: Software to manage and interact with databases
Data abstraction levels: Physical, logical, view
Data independence: Logical (structure changes without affecting applications) vs. physical
(storage changes without affecting structure)
Data models: Relational (tables), hierarchical (tree), network (graph), object-oriented
Three-schema architecture: External (user views), conceptual (logical structure), internal
(physical storage)
Most Tested Topics:
Distinguishing data vs. information
Levels of data abstraction
Data independence types
Relational model characteristics
,2
Practice Questions:
Q1. (Competency 1) Which statement best distinguishes between data and information? A. Data
is quantitative; information is qualitative B. Data is raw facts; information is data processed to
have meaning [CORRECT] C. Data is stored in databases; information is stored in reports D.
Data is always accurate; information may contain errors
Correct Answer: B Rationale: Data consists of raw, unprocessed facts without context (e.g.,
"42"). Information is data that has been processed, organized, or structured to provide meaning
and context (e.g., "42 years old"). Distractor A is incorrect – both can be quantitative or
qualitative. Distractor C is too narrow – data can exist outside databases. Distractor D is
incorrect – both data and information can contain errors.
Q2. (Competency 1) In the three-schema architecture, which schema describes how data is
actually stored on physical storage media? A. External schema B. Conceptual schema C. Internal
schema [CORRECT] D. Logical schema
Correct Answer: C Rationale: The internal schema describes the physical storage structure of
the database, including file organization, indexing methods, and storage details. Distractor A
(external schema) describes user views. Distractor B (conceptual schema) describes the logical
structure without physical details. Distractor D (logical schema) is another term for conceptual
schema.
Q3. (Competency 1) A company changes its database software from Oracle to SQL Server
without modifying any application programs that access the database. This is an example of: A.
Physical data independence B. Logical data independence [CORRECT] C. Program
independence D. Data abstraction
Correct Answer: B Rationale: Logical data independence refers to the ability to change the
conceptual schema (including changing DBMS software) without affecting external schemas or
application programs. Physical data independence (A) refers to changing storage structures
without affecting conceptual schema. Distractor C is not a standard term. Distractor D is a
broader concept.
Q4. (Competency 1) Which characteristic is unique to the relational data model? A. Data
represented as tables with rows and columns [CORRECT] B. Data represented as tree structures
C. Data represented as graphs with nodes and edges D. Data represented as objects with methods
, 3
Correct Answer: A Rationale: The relational model represents data as tables (relations) with
rows (tuples) and columns (attributes). Distractor B describes the hierarchical model. Distractor
C describes the network model. Distractor D describes the object-oriented model.
Q5. (Competency 1) Which term describes data about data, such as column names, data types,
and constraints? A. Metadata [CORRECT] B. Metastructure C. Data dictionary D. System
catalog
Correct Answer: A Rationale: Metadata is data that describes other data, including structural
information about tables, columns, constraints, and relationships. While a data dictionary (C) and
system catalog (D) store metadata, "metadata" is the correct term for the data itself. Distractor B
is not a standard database term.
Q6. (Competency 1) What is the primary purpose of a Database Management System (DBMS)?
A. To store data in tables B. To provide an interface between users and the database
[CORRECT] C. To create ER diagrams D. To generate business reports
Correct Answer: B Rationale: A DBMS serves as an intermediary between users/applications
and the physical database, managing data storage, retrieval, security, and integrity. While
DBMSs store data in tables (A), this is a means to an end, not the primary purpose. Distractors C
and D are specific functions, not the core purpose.
Q7. (Competency 1) Which data model uses parent-child relationships where each child can
have only one parent? A. Relational model B. Hierarchical model [CORRECT] C. Network
model D. Object-oriented model
Correct Answer: B Rationale: The hierarchical model organizes data in a tree structure where
each child node has exactly one parent node. Distractor A (relational) uses tables. Distractor C
(network) allows children to have multiple parents. Distractor D uses objects and classes.
Q8. (Competency 1) Physical data independence allows changes to which level without
affecting the conceptual level? A. External level B. Internal level [CORRECT] C. Logical level
D. View level
Correct Answer: B Rationale: Physical data independence means changes to the internal
(physical storage) level do not affect the conceptual (logical) level. This allows storage
optimization without changing application logic. Distractors A and D refer to user views.
Distractor C is the conceptual level itself.