Quiz: Introduction to ITIL and Configuration Management
Test your understanding of ITIL fundamentals, configuration management concepts, and the historical context of CMDB implementations with these review questions.
1. What does the acronym ITIL stand for?
- Integrated Technology Infrastructure Lifecycle
- Information Technology Infrastructure Library
- International Technology Integration Layer
- IT Implementation and Logistics
Show Answer
The correct answer is B. ITIL stands for the Information Technology Infrastructure Library, a framework developed by the UK's Central Computer and Telecommunications Agency (CCTA) in the late 1980s to standardize IT service management practices. The library originally comprised 31 separate books and has been updated through multiple versions since then.
Concept Tested: ITIL
2. Which of the following best describes a Configuration Item (CI) as defined in ITIL?
- Any piece of hardware owned by an organization and tracked for financial depreciation purposes
- A formal change request submitted through the Change Advisory Board for review
- Any component or service asset that needs to be managed in order to deliver an IT service
- A software license that has been approved by the procurement department
Show Answer
The correct answer is C. ITIL defines a Configuration Item as "any component or other service asset that needs to be managed in order to deliver an IT service." This broad definition encompasses physical hardware, software, documentation, and even logical service definitions—not just hardware or licensed software.
Concept Tested: Configuration Item
3. Within the ITIL Service Support domain, which process is specifically responsible for identifying and addressing the root causes of incidents to prevent their recurrence?
- Incident Management
- Change Management
- Release Management
- Problem Management
Show Answer
The correct answer is D. Problem Management takes a strategic approach by seeking root causes of incidents rather than just restoring service. It distinguishes between known errors (problems with documented workarounds) and underlying problems requiring permanent solutions. Incident Management, by contrast, focuses on rapid service restoration.
Concept Tested: Problem Management
4. What is a Configuration Baseline in the context of ITIL configuration management?
- The minimum hardware specifications required to run a configuration management database
- An approved configuration state at a specific point in time, used as a reference for change control
- A set of performance benchmarks used to measure CMDB query response times
- The initial inventory of all assets recorded when the CMDB is first deployed
Show Answer
The correct answer is B. A configuration baseline represents an approved configuration state at a specific point in time. It serves as a reference point for change control and audit activities, enabling rollback if problems arise and providing comparison points for detecting configuration drift—divergence between documented and actual infrastructure state.
Concept Tested: Configuration Baseline
5. Which of the following most accurately distinguishes Asset Management from Configuration Management?
- Asset Management is used only for hardware, while Configuration Management covers software
- Asset Management focuses on financial and contractual aspects, while Configuration Management focuses on operational relationships and dependencies
- Asset Management is a newer discipline that replaced Configuration Management in ITIL v3
- Asset Management tracks physical items, while Configuration Management tracks logical network connections only
Show Answer
The correct answer is B. Asset Management focuses on financial control—procurement, licensing, depreciation, and disposal—answering questions like "What do we own and what does it cost?" Configuration Management focuses on operational relationships, tracking how components interact and which services depend on which infrastructure elements. Many organizations' CMDB failures stemmed from conflating these distinct purposes.
Concept Tested: Asset Management
6. Why did military-specification configuration management practices, which inspired ITIL, prove increasingly problematic for modern IT environments?
- Military practices required open-source tools that were incompatible with commercial IT systems
- Modern IT lacked the trained personnel needed to follow military documentation standards
- Military-spec practices assumed stable configurations and slow change cycles, while modern IT involves rapid, continuous change
- Military standards required physical audits that were too costly for commercial organizations
Show Answer
The correct answer is C. Military-spec configuration management was designed for systems with stable configurations, long deployment cycles, clear physical boundaries, and centralized control. Modern IT environments—with continuous deployment, ephemeral cloud infrastructure, and distributed control—violate these core assumptions. Application architectures now deploy changes hundreds or thousands of times daily, making military-style documentation practices unworkable.
Concept Tested: Military-Spec Configuration
7. Which ITIL Service Support process is responsible for governing modifications to IT infrastructure by evaluating, approving, and reviewing changes before implementation?
- Problem Management
- Configuration Management
- Change Management
- Incident Management
Show Answer
The correct answer is C. Change Management provides governance over infrastructure modifications, balancing agility with stability. It establishes procedures for requesting, evaluating, approving, implementing, and reviewing changes—often through a Change Advisory Board (CAB). Its effectiveness depends critically on accurate configuration information to determine the blast radius of proposed changes.
Concept Tested: Change Management
8. Studies examining traditional CMDB implementations found failure rates exceeding what threshold, with data maintenance as a primary cause?
- 30%, primarily due to insufficient vendor support for database integrations
- 50%, primarily because organizations lacked trained ITIL-certified staff
- 70%, because infrastructure changed faster than manual processes could maintain accurate records
- 90%, because relational databases could not store configuration item attributes reliably
Show Answer
The correct answer is C. Studies consistently found CMDB failure rates exceeding 70%. Infrastructure changed faster than humans could update documentation, creating perpetual gaps between documented and actual state. Manual data entry proved unsustainable, integration with discovery tools required constant maintenance, and data quality erosion created negative feedback loops where teams stopped trusting and updating the CMDB.
Concept Tested: Configuration Management Database
9. Software Asset Management is particularly complex compared to Hardware Asset Management primarily because of which challenge?
- Software assets depreciate faster than hardware and require more frequent financial write-offs
- Software licensing models—per-user, per-core, subscription, open-source—create multifaceted compliance obligations
- Software cannot be discovered automatically, requiring entirely manual inventory processes
- Software assets must be stored in separate databases from hardware assets due to regulatory requirements
Show Answer
The correct answer is B. Software Asset Management faces complex licensing compliance challenges that hardware does not. Per-user licenses, per-core licenses, subscription models, and open-source compliance obligations create a multifaceted management problem. Organizations must track license entitlements against actual deployments to avoid compliance risk and optimize software spending—a challenge fundamentally different from tracking physical hardware inventory.
Concept Tested: Software Asset
10. What fundamental architectural limitation of relational databases contributed to CMDB failures for real-time operational use cases?
- Relational databases could not store text fields longer than 255 characters, limiting CI attribute detail
- Multi-hop dependency queries required complex recursive joins whose performance degraded exponentially with query depth
- Relational databases lacked user authentication features needed for change management workflows
- Relational schemas could not represent many-to-many relationships between configuration items
Show Answer
The correct answer is B. Relational databases require complex recursive SQL joins to traverse multi-hop dependency relationships. As dependency chains lengthen, query performance degrades exponentially—queries that should return results in milliseconds often took minutes or timed out entirely. This made CMDBs unusable for real-time operational decisions such as change impact analysis, motivating exploration of graph database alternatives that provide constant-time traversal.
Concept Tested: Configuration Management Database