WGU C175/D426 DATA MANAGEMENT FOUNDATIONS
OA EXAM Actual Exam 2026/2027 2 Latest Versions with
Questions and Correct Detailed Answers with Rationales |
100% Correct and Verified Answers Already Graded A+
Pass Guaranteed - A+ Graded
Complete WGU Data Management Foundations Objective Assessment Prep | 2 Full Practice
Exams
VERSION 1
SECTION 1: DATABASE CONCEPTS & ARCHITECTURE (Questions 1-10)
Q1 (Version 1): Which of the following is an advantage of using a database management system
(DBMS) over traditional file-based systems?
A. Reduced redundancy and improved data integrity. [CORRECT]
B. Increased data duplication for backup purposes
C. Slower data access for complex queries
D. Higher storage requirements for metadata
Correct Answer: A
Rationale: DBMS reduces data redundancy through normalization and enforces data integrity
through constraints, which are advantages over file-based systems where data is often duplicated
and inconsistent. Option B describes a disadvantage, not an advantage. Option C is incorrect
because DBMS typically optimizes query performance. Option D may be technically true but is
not considered an advantage.
Q2 (Version 1): Which characteristic of a database allows different users to have different views
of the same data?
A. Data independence
B. Multi-user transaction processing
C. Multiple views of data. [CORRECT]
D. Self-describing nature
,2
Correct Answer: C
Rationale: The multiple views characteristic allows different users or applications to see different
subsets of data or different perspectives of the same data, tailored to their specific needs. Data
independence (A) refers to insulation from physical storage changes. Multi-user transaction
processing (B) allows concurrent access. Self-describing nature (D) means the database contains
metadata about its structure.
Q3 (Version 1): In the ANSI-SPARC three-level architecture, which level provides the complete
view of the entire database as seen by the database administrator?
A. External level
B. Conceptual level. [CORRECT]
C. Internal level
D. Physical level
Correct Answer: B
Rationale: The conceptual level describes the logical structure of the entire database as viewed
by the DBA, including all entities, relationships, and constraints. The external level (A) shows
user-specific views. The internal/physical level (C, D) describes physical storage details.
Q4 (Version 1): Which data model organizes data in a tree-like structure with parent-child
relationships?
A. Relational model
B. Network model
C. Hierarchical model. [CORRECT]
D. Object-oriented model
Correct Answer: C
Rationale: The hierarchical model organizes data in a tree structure where each child has exactly
one parent, creating a one-to-many relationship pattern. The relational model (A) uses tables.
The network model (B) allows many-to-many relationships through pointers. The object-oriented
model (D) uses objects and classes.
Q5 (Version 1): Which component of the DBMS is responsible for interpreting and executing
SQL statements?
A. Storage manager
B. Query processor. [CORRECT]
,3
C. Transaction manager
D. Buffer manager
Correct Answer: B
Rationale: The query processor parses, optimizes, and executes SQL queries, determining the
most efficient way to retrieve or modify data. The storage manager (A) handles physical storage.
The transaction manager (C) ensures ACID properties. The buffer manager (D) manages memory
caching.
Q6 (Version 1): What is the primary purpose of logical data independence?
A. To protect data from unauthorized access
B. To allow changes to the conceptual schema without affecting external schemas. [CORRECT]
C. To enable physical storage changes without impacting the conceptual schema
D. To ensure data consistency across multiple users
Correct Answer: B
Rationale: Logical data independence allows modifications to the conceptual schema (adding
tables, changing relationships) without requiring changes to external views or application
programs. Physical data independence (C) handles storage-level changes. Data security (A) and
consistency (D) are separate concerns.
Q7 (Version 1): Which of the following is NOT a characteristic of a database?
A. Self-describing nature
B. Insulation between programs and data
C. Data redundancy for backup purposes. [CORRECT]
D. Multi-user transaction processing
Correct Answer: C
Rationale: Databases are designed to minimize redundancy, not encourage it. While backups are
important, intentional data redundancy is not a database characteristic—it's actually what
normalization seeks to eliminate. Self-describing nature (A), program-data independence (B),
and multi-user support (D) are all fundamental database characteristics.
Q8 (Version 1): In an object-oriented database model, what represents both data and the
operations that can be performed on that data?
A. Entity
, 4
B. Attribute
C. Object. [CORRECT]
D. Relationship
Correct Answer: C
Rationale: Objects encapsulate both data (attributes) and methods (operations), distinguishing
object-oriented databases from relational databases. Entities (A) and attributes (B) are relational
concepts. Relationships (D) describe connections between entities.
Q9 (Version 1): Which type of database system is specifically designed to handle unstructured
and semi-structured data at massive scale?
A. Relational DBMS
B. NoSQL database. [CORRECT]
C. Hierarchical DBMS
D. Network DBMS
Correct Answer: B
Rationale: NoSQL databases (document, key-value, column-family, graph stores) are designed
for scalability and flexibility with unstructured/semi-structured data. Relational systems (A)
require structured schemas. Hierarchical (C) and network (D) are legacy models with rigid
structures.
Q10 (Version 1): Which DBMS component ensures that concurrent transactions do not interfere
with each other?
A. Query optimizer
B. Concurrency control manager. [CORRECT]
C. Integrity checker
D. Recovery manager
Correct Answer: B
Rationale: The concurrency control manager implements locking, timestamping, or other
mechanisms to ensure isolation between concurrent transactions. The query optimizer (A)
improves performance. The integrity checker (C) validates constraints. The recovery manager
(D) handles system failures.
SECTION 2: DATA MODELING & DATABASE DESIGN (Questions 11-20)