WGU Comprehensive Exam Master Document
2026/2027 Academic Year | 750 Questions
Complete Test Bank | Verified Answers A+
Graded | Pass Guaranteed - A+ Graded
SECTION 1: WGU D426 - DATA MANAGEMENT FOUNDATIONS
120 Questions | Competency-Weighted
Competency 1: Data Management Concepts (18 questions)
Question 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. Information is data that has
been processed, organized, or structured to provide meaning and context. 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.
Question 2 What is the primary difference between a database and a Database Management
System (DBMS)?
A. A database is software; a DBMS is hardware
B. A database is a collection of related data; a DBMS is software that manages the database
[CORRECT]
C. A database is for small businesses; a DBMS is for enterprises
D. A database stores only text; a DBMS stores multimedia
Correct Answer: B
Rationale: A database is an organized collection of related data. A DBMS is the software system
that enables users to create, maintain, and manipulate databases. Distractor A reverses the
relationship. Distractor C is incorrect – both scale to different sizes. Distractor D is incorrect –
modern databases store all data types.
,2
Question 3 Which level of data abstraction describes HOW the data is actually stored on physical
media?
A. External level
B. Conceptual level
C. Internal level [CORRECT]
D. Logical level
Correct Answer: C
Rationale: The internal (physical) level describes the physical storage structure, including file
organization, indexing, and compression. The external level deals with user views, the
conceptual level with overall logical structure, and logical level is often synonymous with
conceptual.
Question 4 In the three-schema architecture, which schema is closest to the end user?
A. Internal schema
B. Conceptual schema
C. External schema [CORRECT]
D. Physical schema
Correct Answer: C
Rationale: The external schema (or subschema) represents the user view and is closest to end
users. It hides complexity and shows only relevant data. The internal/physical schema deals with
storage, and the conceptual schema represents the entire database logically.
Question 5 What is data independence?
A. The ability to change data without affecting users [CORRECT]
B. The ability to delete data permanently
C. The ability to store data in multiple locations
D. The ability to encrypt data automatically
Correct Answer: A
Rationale: Data independence allows changes at one level of the database system without
requiring changes at higher levels. Logical data independence changes conceptual schema
without affecting external schemas; physical data independence changes internal schema without
affecting conceptual schema.
,3
Question 6 Which of the following is NOT a characteristic of a database approach compared to
file processing systems?
A. Data redundancy is minimized
B. Data is isolated and scattered [CORRECT]
C. Data can be shared among multiple users
D. Data integrity is enforced
Correct Answer: B
Rationale: Data isolation and scattering are problems of traditional file processing systems, not
database approaches. Databases centralize data, reduce redundancy, enable sharing, and enforce
integrity constraints.
Question 7 What does data redundancy refer to?
A. Storing data in multiple locations unnecessarily [CORRECT]
B. Backing up data regularly
C. Encrypting data for security
D. Compressing data to save space
Correct Answer: A
Rationale: Data redundancy refers to storing the same data in multiple places, which can cause
inconsistencies and waste storage. Controlled redundancy may exist for performance, but
uncontrolled redundancy is problematic.
Question 8 Which term describes the structure of a database including constraints and
relationships?
A. Data manipulation
B. Data definition [CORRECT]
C. Data control
D. Data transaction
Correct Answer: B
Rationale: Data definition involves specifying data types, structures, and constraints (using
DDL). Data manipulation involves querying and modifying data (DML). Data control involves
security and access rights (DCL).
Question 9 What is a data dictionary?
, 4
A. A book about database theory
B. Metadata repository containing data definitions [CORRECT]
C. A tool for drawing ER diagrams
D. A backup storage device
Correct Answer: B
Rationale: A data dictionary (or system catalog) contains metadata—data about data—including
definitions, relationships, constraints, and access permissions. It's essential for database
management and documentation.
Question 10 Which DBMS component translates logical requests into physical operations?
A. Query compiler
B. Storage manager
C. Database engine/ processor [CORRECT]
D. Transaction manager
Correct Answer: C
Rationale: The database engine (or processor) translates logical queries into physical operations
on storage. The query compiler optimizes queries, the storage manager handles I/O, and the
transaction manager ensures ACID properties.
Question 11 What is the primary purpose of a database schema?
A. To store actual data records
B. To define the logical structure and constraints of the database [CORRECT]
C. To provide user authentication
D. To optimize query performance
Correct Answer: B
Rationale: A schema defines the logical structure—tables, attributes, relationships, and
constraints. It serves as a blueprint, not for storing data (A), authentication (C), or performance
optimization (D).
Question 12 In database terminology, what is an instance?
A. The DBMS software version
B. The data in the database at a particular moment [CORRECT]
C. The physical server hardware
D. The user login session