<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CIPS Level 5 - L5M9 Operations Management | Mutalex Academy</title>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
    <style>
        :root {
            --primary: #1a365d;
            --primary-light: #2c5282;
            --accent: #d69e2e;
            --accent-light: #ecc94b;
            --bg: #f7fafc;
            --card-bg: #ffffff;
            --text: #2d3748;
            --text-light: #718096;
            --border: #e2e8f0;
            --success: #38a169;
            --warning: #dd6b20;
            --info: #3182ce;
            --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 15px;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-lg);
        }

        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 24px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .logo-text {
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .logo-text span {
            color: var(--accent-light);
        }

        .header-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .header-nav a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.2s;
        }

        .header-nav a:hover, .header-nav a.active {
            background: rgba(255,255,255,0.15);
            color: white;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, #234876 50%, var(--primary-light) 100%);
            color: white;
            padding: 60px 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(214,158,46,0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .badge {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .hero h1 span {
            color: var(--accent-light);
        }

        .hero-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 24px;
            flex-wrap: wrap;
        }

        .hero-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            opacity: 0.9;
        }

        .hero-meta-item svg {
            width: 18px;
            height: 18px;
            opacity: 0.8;
        }

        /* Layout */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 24px;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 32px;
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 80px;
            height: calc(100vh - 100px);
            overflow-y: auto;
            padding-right: 8px;
        }

        .sidebar::-webkit-scrollbar {
            width: 6px;
        }

        .sidebar::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 3px;
        }

        .toc-title {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-light);
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--accent);
            display: inline-block;
        }

        .toc {
            list-style: none;
        }

        .toc li {
            margin-bottom: 2px;
        }

        .toc a {
            display: block;
            padding: 8px 12px;
            text-decoration: none;
            color: var(--text);
            font-size: 13px;
            border-radius: 6px;
            transition: all 0.2s;
            border-left: 3px solid transparent;
        }

        .toc a:hover {
            background: var(--card-bg);
            border-left-color: var(--accent);
            color: var(--primary);
        }

        .toc a.active {
            background: var(--card-bg);
            border-left-color: var(--accent);
            color: var(--primary);
            font-weight: 600;
        }

        .toc-chapter {
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--primary);
            margin-top: 16px;
            margin-bottom: 4px;
            padding-left: 12px;
        }

        /* Main Content */
        .main {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow);
        }

        .section {
            margin-bottom: 48px;
        }

        .section:last-child {
            margin-bottom: 0;
        }

        h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        h2 .ch-num {
            background: var(--accent);
            color: white;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            font-size: 16px;
            flex-shrink: 0;
        }

        h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-light);
            margin-top: 32px;
            margin-bottom: 16px;
            padding-left: 16px;
            border-left: 4px solid var(--accent);
        }

        h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text);
            margin-top: 24px;
            margin-bottom: 12px;
        }

        p {
            margin-bottom: 14px;
            text-align: justify;
        }

        /* Key Point Box */
        .key-point {
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
            border-left: 4px solid var(--accent);
            padding: 20px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
            position: relative;
        }

        .key-point::before {
            content: "📌";
            font-size: 20px;
            position: absolute;
            top: 16px;
            right: 16px;
            opacity: 0.3;
        }

        .key-point strong {
            color: var(--warning);
            font-weight: 700;
        }

        .key-point p {
            margin: 0;
            font-style: italic;
            color: #744210;
        }

        /* Tables */
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--card-bg);
            font-size: 14px;
        }

        thead {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
        }

        th {
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        td {
            padding: 14px 18px;
            border-bottom: 1px solid var(--border);
            vertical-align: top;
        }

        tbody tr:hover {
            background: #f7fafc;
        }

        tbody tr:nth-child(even) {
            background: #fafbfc;
        }

        tbody tr:nth-child(even):hover {
            background: #f0f4f8;
        }

        /* Lists */
        ul, ol {
            margin: 16px 0;
            padding-left: 28px;
        }

        li {
            margin-bottom: 10px;
        }

        li::marker {
            color: var(--accent);
        }

        /* Cards */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }

        .card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .card-title {
            font-weight: 700;
            font-size: 16px;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .card p {
            font-size: 14px;
            margin: 0;
            color: var(--text-light);
        }

        /* Definition Box */
        .def-box {
            background: linear-gradient(135deg, #ebf8ff 0%, #bee3f8 100%);
            border-radius: 12px;
            padding: 24px;
            margin: 20px 0;
            border: 1px solid #90cdf4;
        }

        .def-box dt {
            font-weight: 700;
            color: var(--primary);
            font-size: 16px;
            margin-bottom: 8px;
        }

        .def-box dd {
            margin: 0;
            color: #2a4365;
        }

        /* LO Badge */
        .lo-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--success) 0%, #2f855a 100%);
            color: white;
            padding: 14px 24px;
            border-radius: 12px;
            font-weight: 600;
            margin: 16px 0;
            box-shadow: var(--shadow);
        }

        .lo-badge svg {
            width: 24px;
            height: 24px;
        }

        /* Exam Tips */
        .exam-tip {
            background: linear-gradient(135deg, #faf5ff 0%, #e9d8fd 100%);
            border: 1px solid #d6bcfa;
            border-radius: 12px;
            padding: 24px;
            margin: 24px 0;
        }

        .exam-tip h4 {
            color: #553c9a;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Answer Key Box */
        .answer-key {
            background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
            border: 1px solid #9ae6b4;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 24px 0;
        }

        .answer-key strong {
            color: var(--success);
        }

        /* Quiz Question */
        .quiz-question {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            margin: 16px 0;
        }

        .quiz-question .q-num {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .quiz-question .options {
            margin: 12px 0 0 0;
            padding-left: 20px;
        }

        .quiz-question .options li {
            margin-bottom: 6px;
            color: var(--text-light);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }

            .sidebar {
                display: none;
            }

            .hero h1 {
                font-size: 28px;
            }

            .main {
                padding: 24px;
            }
        }

        @media (max-width: 640px) {
            .header-top {
                flex-direction: column;
                gap: 12px;
            }

            .hero-meta {
                flex-direction: column;
                gap: 10px;
            }

            h2 {
                font-size: 22px;
            }

            h3 {
                font-size: 17px;
            }
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Print styles */
        @media print {
            .header, .sidebar, .hero {
                display: none;
            }

            .main {
                box-shadow: none;
                padding: 0;
            }
        }

        /* Quick Reference Grid */
        .quick-ref {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }

        .quick-ref-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 18px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .quick-ref-item strong {
            color: var(--primary);
            font-size: 15px;
        }

        .quick-ref-item span {
            color: var(--text-light);
            font-size: 13px;
        }

        /* Chapter divider */
        .chapter-divider {
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary-light));
            border-radius: 2px;
            margin: 48px 0;
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 40px 24px;
            color: var(--text-light);
            font-size: 13px;
            border-top: 1px solid var(--border);
            margin-top: 40px;
        }

        .site-fixed-header-spacer { height: 88px; }
    </style>
</head>
<body>

    <!-- Header -->
    <header class="header">
        <div class="header-top">
            <div class="logo-area">
                <a href="/home" data-site-home style="display:flex;align-items:center;gap:14px;text-decoration:none;">
                    <span class="logo-icon" data-site-logo></span>
                    <div class="logo-text" data-site-name>Mutalex <span>Academy</span></div>
                </a>
            </div>
            <nav class="header-nav">
                <a href="/home" class="active">Home</a>
                <a href="/surveys.php">Surveys</a>
                <a href="/courses/catalog.php">Courses</a>
                <a href="/login.php">Login</a>
            </nav>
        </div>
    </header>

    <div class="site-fixed-header-spacer"></div>

    <!-- Hero -->
    <section class="hero">
        <div class="hero-content">
            <div class="badge">CIPS Level 5 — Advanced Diploma</div>
            <h1>L5M9 <span>Operations Management</span></h1>
            <p style="font-size: 18px; opacity: 0.9; max-width: 700px; margin: 0 auto;">
                Elective Module | 6 Credits | Objective Response Exam (1.5 Hours)
            </p>
            <div class="hero-meta">
                <div class="hero-meta-item">
                    <svg fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253"/></svg>
                    Comprehensive Lecture Notes
                </div>
                <div class="hero-meta-item">
                    <svg fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"/></svg>
                    2 Learning Outcomes
                </div>
                <div class="hero-meta-item">
                    <svg fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"/></svg>
                    1.5 Hour Exam
                </div>
            </div>
        </div>
    </section>

    <div class="container">
        <!-- Sidebar Navigation -->
        <aside class="sidebar">
            <div class="toc-title">Contents</div>
            <ul class="toc">
                <li><a href="#overview" class="active">Module Overview</a></li>

                <li class="toc-chapter">Chapter 1 — LO1</li>
                <li><a href="#ch1-1">1.1 Role & Activities of OM</a></li>
                <li><a href="#ch1-2">1.2 Objectives & Strategies</a></li>
                <li><a href="#ch1-3">1.3 OM Processes</a></li>
                <li><a href="#ch1-4">1.4 OM Across Supply Chains</a></li>

                <li class="toc-chapter">Chapter 2 — LO2</li>
                <li><a href="#ch2-1">2.1 Performance Improvement Tools</a></li>
                <li><a href="#ch2-2">2.2 Failure Prevention & Recovery</a></li>
                <li><a href="#ch2-3">2.3 Total Quality Management</a></li>
                <li><a href="#ch2-4">2.4 Quality Improvement Techniques</a></li>

                <li class="toc-chapter">Practice Questions</li>
                <li><a href="#practice-ch1">Chapter 1 Knowledge Check</a></li>
                <li><a href="#practice-ch2">Chapter 2 Knowledge Check</a></li>
                <li><a href="#appendix-a">Appendix A — Extended Qs</a></li>
                <li><a href="#appendix-b">Appendix B — Extended Qs</a></li>
            </ul>
        </aside>

        <!-- Main Content -->
        <main class="main">
            <!-- CHAPTER 1: LO1 -->
            <section class="section" id="ch1">
                <h2><span class="ch-num">1</span> The Concept and Scope of Operations Management (LO1)</h2>
                <p>This chapter builds the foundations of operations management (OM): what it is, why it matters, how it is planned and directed strategically, how operations processes actually work, and how OM differs across sectors and supply chains. It maps to CIPS assessment criteria 1.1–1.4.</p>
                <h3 id="ch1-1">1.1 Analyse the role and activities of operations management in organisations</h3>
                <h4>1.1.1 Definitions of operations and operations management</h4>
                <p>Every organisation exists to provide something of value to customers — a physical product, a service, or a combination of both. Getting that product or service to the customer requires a chain of planned activities: acquiring inputs, converting them, and delivering the result. Collectively, these activities are called operations.</p>
                <div class="def-box">
                    <dl>
                        <dt>Products</dt>
                        <dd>tangible outputs that customers acquire, consume or use to satisfy a need (e.g. a laptop, a car, a loaf of bread).</dd>
                    </dl>
                    <dl>
                        <dt>Services</dt>
                        <dd>intangible outputs that customers experience or engage in (e.g. a haircut, a consultation, an insurance claim).</dd>
                    </dl>
                    <dl>
                        <dt>Resources</dt>
                        <dd>the finance, materials, assets, technology and people/skills an organisation draws on to get work done.</dd>
                    </dl>
                    <dl>
                        <dt>Operations</dt>
                        <dd>all the processes undertaken within an organisation to produce and deliver products and/or services.</dd>
                    </dl>
                    <dl>
                        <dt>Operations management (OM)</dt>
                        <dd>the planning, organising, controlling and co-ordinating of the resources and processes involved in acquiring inputs, transforming them, and distributing outputs, so that the organisation is effective (does the right things), efficient (uses minimum resource to do them) and delivers efficacy (achieves the intended result).</dd>
                    </dl>
                </div>
                <p>The operations manager is accountable for the day-to-day and strategic decisions that keep this transformation running: what to produce, how much capacity to hold, how to schedule work, how to control quality, and how to improve performance over time. Operations rarely works in isolation — it must be tightly coordinated with marketing (which generates demand), finance (which funds and measures investment), HR (which resources and develops staff) and procurement/supply chain management (which sources the inputs operations needs).</p>
                <h4>1.1.2 The extent of operations management in organisations</h4>
                <p>OM is not confined to factories. Any organisation that converts inputs into outputs has an operations function, whether that organisation is a multinational manufacturer, a hospital, a bank, a university or a local charity.</p>
                <ul>
                    <li>Core (or &#x27;front office&#x27;) operations directly create and deliver the product/service the external customer pays for or receives.</li>
                    <li>Support (or &#x27;back office&#x27;) operations serve internal customers — e.g. IT, HR administration, facilities management — enabling the core operation to function.</li>
                    <li>Typical OM activities span: process and product/service design, forecasting demand, capacity planning, facility location and layout, inventory and materials management, scheduling, quality management, and continuous improvement.</li>
                </ul>
                <p>Because operations usually accounts for the majority of an organisation&#x27;s cost base and staff, effective OM is one of the largest levers available for improving profitability, customer satisfaction and competitiveness.</p>
                <h4>1.1.3 Operations management in different types of organisations</h4>
                <p>While the underlying transformation logic (inputs → process → outputs) is universal, its application differs by sector:</p>
                <ul>
                    <li>Manufacturing organisations — convert raw materials/components into physical goods; success is often measured through cost, quality conformance and delivery reliability.</li>
                    <li>Service organisations — intangible, often simultaneous production and consumption, with high customer contact (e.g. retail banking, healthcare, hospitality); success is often measured through customer experience and responsiveness.</li>
                    <li>Retail organisations — combine a physical/digital product offer with a strong service layer (availability, convenience, customer service).</li>
                    <li>Construction organisations — project-based, one-off or low-volume, high-value operations with long lead times and complex supply networks.</li>
                    <li>Public sector / not-for-profit organisations — apply OM principles to deliver public services (e.g. NHS, local government) but are judged on value for money and service standards rather than profit.</li>
                </ul>
                <p>An important nuance for the CIPS exam: most &#x27;real&#x27; operations are a blend of product and service elements (e.g. a restaurant provides a tangible meal and an intangible dining experience) — pure product-only or service-only operations are relatively rare.</p>
                <h3 id="ch1-2">1.2 Critically assess the objectives and strategies of operations management</h3>
                <h4>1.2.1 Implementing, supporting and driving strategy — the Hayes and Wheelwright model</h4>
                <p>Hayes and Wheelwright (1984) proposed a four-stage model describing how far the operations function contributes to overall organisational strategy, ranging from a drag on performance through to a genuine source of competitive advantage.</p>
                <div class="table-wrap">
                    <table>
                        <thead>
                            <tr><th>Stage</th><th>Description</th></tr>
                        </thead>
                        <tbody>
                            <tr><td><strong>1. Internally neutral</strong></td><td>Operations is reactive and inward-looking — fixing problems only as they arise. It makes little positive or negative contribution and is often seen by other functions as 'holding the business back'.</td></tr>
                            <tr><td><strong>2. Externally neutral</strong></td><td>Operations starts to benchmark itself against comparable external organisations and adopt industry best practice, keeping pace with (but not beating) competitors.</td></tr>
                            <tr><td><strong>3. Internally supportive</strong></td><td>Operations delivers strong capabilities that are clearly aligned to, and actively support, the organisation's competitive strategy.</td></tr>
                            <tr><td><strong>4. Externally supportive</strong></td><td>Operations is proactive and forward-looking, anticipating market change and providing a genuine, sustainable source of competitive advantage — 'clearly the best in the industry'.</td></tr>
                        </tbody>
                    </table>
                </div>
                <h4>1.2.2 Stages of development of operations strategy</h4>
                <p>Strategy exists at three organisational levels:</p>
                <ul>
                    <li>Corporate level — the &#x27;big picture&#x27;: which markets/industries to compete in and how resources are allocated across the business.</li>
                    <li>Business level — how a specific business unit will compete (e.g. on price, quality, innovation or service) within its market.</li>
                    <li>Functional level — how each function (operations, marketing, finance, HR) will organise itself to support the business and corporate strategies.</li>
                </ul>
                <p>Operations strategy sits at the functional level. Following Hill (2005), an operations strategy is typically developed by: (1) defining corporate objectives; (2) translating these into operations objectives; (3) identifying candidate strategies/actions to achieve those objectives; and (4) evaluating and selecting the most appropriate option(s).</p>
                <h4>1.2.3 Performance objectives of operations management</h4>
                <p>Slack and Brandon-Jones identify five generic performance objectives that operations managers must balance. The relative importance of each depends on what customers value and how the organisation competes.</p>
                <div class="table-wrap">
                    <table>
                        <thead>
                            <tr><th>Objective</th><th>What it means</th><th>Benefit to the organisation</th></tr>
                        </thead>
                        <tbody>
                            <tr><td><strong>Quality</strong></td><td>Doing things right — providing products/services that are fit for purpose and conform to specification</td><td>Improves dependability, customer satisfaction; reduces cost of complaints/re-work</td></tr>
                            <tr><td><strong>Speed</strong></td><td>Doing things quickly — minimising the time between order and fulfilment</td><td>Improves availability, customer loyalty and market share; reduces idle time</td></tr>
                            <tr><td><strong>Dependability</strong></td><td>Keeping delivery promises made to customers</td><td>Builds trust and loyalty; reduces wasted resource and instability</td></tr>
                            <tr><td><strong>Flexibility</strong></td><td>The ability to change — in volume, timing, product/service mix, or through innovation</td><td>Enables the organisation to respond to unforeseen internal/external change</td></tr>
                            <tr><td><strong>Cost</strong></td><td>Producing/delivering at low cost</td><td>Enables competitive pricing while protecting margin and improving market share</td></tr>
                        </tbody>
                    </table>
                </div>
                <p>Flexibility itself has four dimensions worth remembering: volume flexibility (changing output quantity), time flexibility (changing delivery timescales), mix flexibility (varying the range produced) and innovation flexibility (introducing new products/services).</p>
                <p>Importantly, the priority given to each objective will vary between organisations (a budget airline prioritises cost; a luxury hotel prioritises quality) and even between processes within the same organisation (a bank&#x27;s high street counter may prioritise flexibility/quality of interaction, while its back-office transaction processing prioritises cost and speed).</p>
                <h4>1.2.4 Top-down and bottom-up perspectives of operations strategy</h4>
                <ul>
                    <li>Top-down perspective — operations strategy is derived from, and cascades down from, corporate and business strategy; senior management decide priorities and operations implements them.</li>
                    <li>Bottom-up perspective — operations strategy emerges from day-to-day operational experience and continuous improvement activity, which then informs and shapes higher-level strategy over time.</li>
                </ul>
                <p>In practice, most organisations use both perspectives together: strategic intent flows down, while operational learning and market intelligence flow up and refine future strategy.</p>
                <h4>1.2.5 Order qualifying and order winning objectives</h4>
                <p>Hill and Hill (2009) distinguish between two categories of competitive factor:</p>
                <ul>
                    <li>Order qualifiers — factors a business must meet to a minimum acceptable standard simply to be considered by the customer at all (e.g. a minimum level of quality or safety). Exceeding a qualifier beyond the threshold does not, on its own, win additional business.</li>
                    <li>Order winners — the factor(s) that actually persuade a customer to buy from one supplier rather than another (e.g. price, delivery speed, or a unique product feature). Improving performance on an order winner directly increases competitive advantage and sales.</li>
                </ul>
                <p>Order winners and qualifiers can change over time and by market segment, so operations managers must regularly reassess which objectives genuinely differentiate the organisation.</p>
                <h3 id="ch1-3">1.3 Evaluate operations management processes</h3>
                <h4>1.3.1 The input–transformation–output model</h4>
                <p>At its core, every operation can be described using the input–transformation–output (ITO) model:</p>
                <ul>
                    <li>Inputs — transforming resources (facilities, staff, technology that act on other resources) and transformed resources (materials, information, customers that are acted upon).</li>
                    <li>Transformation process — the activities (e.g. assembly, conversion, storage, repair, transport) that convert inputs into the intended output.</li>
                    <li>Outputs — the finished products and/or services delivered to the customer.</li>
                </ul>
                <p>This model applies to any operation, from a bread factory (transforming flour and other ingredients into loaves) to a counselling service (transforming a client&#x27;s presenting issue, through diagnostic and care processes, into improved wellbeing) — although the nature of the inputs, the transformation process and the outputs will vary considerably.</p>
                <h4>1.3.2 The dimensions of operations processes: the Four Vs</h4>
                <p>Slack&#x27;s &#x27;four Vs&#x27; framework explains why operations processes differ, and what that means for cost and management approach.</p>
                <p>As a general rule: high volume, low variety, low variation and low visibility processes can be run at lowest cost; low volume, high variety, high variation and high visibility processes cost more to run and typically command a premium price. The same organisation can display different combinations of the four Vs across its different channels (e.g. a bank counter vs. an ATM).</p>
                <h4>1.3.3 The activities of operations processes</h4>
                <p>Regardless of the specific sector, operations managers undertake a broadly similar cycle of activity: forecasting and planning demand; designing products, services and processes; scheduling and sequencing work; controlling quality throughout; managing capacity and inventory; and continuously monitoring and improving performance against the five performance objectives (quality, speed, dependability, flexibility, cost).</p>
                <h3 id="ch1-4">1.4 Analyse the application of operations management across supply chains</h3>
                <h4>1.4.1 OM in manufacturing, services, retail, construction and public sector supply chains</h4>
                <p>Manufacturing operations focus on producing a quality product, in the right quantity, on time and at optimal cost. Key decisions include production planning (production method, site selection, facility layout, materials management), production control (scheduling and monitoring) and quality control.</p>
                <p>Production (planning) methods</p>
                <ul>
                    <li>Make-to-order — production only begins once a specific customer order/specification is received (e.g. bespoke furniture, tailoring).</li>
                    <li>Mass production (make-to-stock) — standardised goods produced in large volumes and held in stock ahead of demand (e.g. canned food, consumer electronics).</li>
                    <li>Mass customisation — a hybrid approach: a standardised &#x27;core&#x27; product/process is customised at a late stage to meet individual customer preferences (e.g. build-your-own sandwich, personalised trainers).</li>
                </ul>
                <p>Facility location and layout</p>
                <p>Location decisions weigh factors such as availability of labour and raw materials, infrastructure, transport costs, closeness to markets/suppliers, government policy and cost of land. Layout decisions (fixed-position, functional/process, cell, or product/flow layout) affect efficiency, safety and lead time — a good layout is clear, safe, minimises lead time, gives easy access to materials/equipment and uses space appropriately.</p>
                <p>Service operations focus on managing the customer experience, since production and consumption often happen simultaneously and customer contact is high. Retail operations blend product availability with a service layer (convenience, in-store experience). Construction operations are project-based, typically low-volume/high-variety with long lead times, complex sub-contracting and significant coordination needs. Public sector operations apply the same OM principles to deliver services (health, education, transport) but are measured against value-for-money and service-quality criteria rather than profit.</p>
                <h4>1.4.2 The impact of operations management on global sourcing</h4>
                <p>As supply chains globalise, operations management must account for longer and more complex lead times, currency and political risk, cultural and language differences, varying quality/labour standards, and increased logistics complexity. Effective global OM requires strong supplier relationship management, robust quality assurance across distant sites, and contingency planning for disruption (e.g. port delays, geopolitical events).</p>
                <h4>1.4.3 Examples of operations management in different supply chains</h4>
                <p>Applying the concepts above: a car manufacturer uses mass production with a product/flow layout and global sourcing of components; a management consultancy uses a highly customised, make-to-order, high-visibility service process; a supermarket blends mass retail logistics (replenishment, inventory) with a high-visibility customer service layer at checkout; a hospital manages a high-variety, high-variation, high-visibility service process where capacity (beds, staff) must flex to fluctuating patient demand.</p>
                <h3 id="chapter-1-knowledge-check-10-objective-response-questions">Chapter 1 Knowledge Check — 10 Objective Response Questions</h3>
                <p>Choose the single best answer for each question (CIPS objective response style).</p>
                <p>1. Which of the following is the best definition of operations management?</p>
                <p>A. The management of an organisation&#x27;s marketing budget</p>
                <p>B. The planning, organising, controlling and co-ordinating of resources and processes used to transform inputs into outputs</p>
                <p>C. The recruitment and training of operational staff only</p>
                <p>D. The negotiation of supplier contracts</p>
                <p>2. Which of the following is an example of an intangible output (a service)?</p>
                <p>A. A motor car</p>
                <p>B. A tin of processed food</p>
                <p>C. A hairdressing appointment</p>
                <p>D. A mobile phone</p>
                <p>3. &#x27;Efficiency&#x27; in operations management is best described as:</p>
                <p>A. Doing the right things</p>
                <p>B. Using the minimum resource necessary to achieve an outcome</p>
                <p>C. Achieving the intended result regardless of cost</p>
                <p>D. Maximising customer contact</p>
                <p>4. In the Hayes and Wheelwright four-stage model, an operations function that only fixes machines when they break down, with no proactive planning, is best described as:</p>
                <p>A. Externally supportive</p>
                <p>B. Internally supportive</p>
                <p>C. Externally neutral</p>
                <p>D. Internally neutral</p>
                <p>5. An operations function that is &#x27;externally neutral&#x27; is primarily characterised by:</p>
                <p>A. Driving the organisation&#x27;s overall competitive strategy</p>
                <p>B. Benchmarking against, and matching, comparable external organisations</p>
                <p>C. Ignoring the external market entirely</p>
                <p>D. Being viewed as holding the organisation back</p>
                <p>6. Which level of strategy focuses on how a specific business unit will compete within its market?</p>
                <p>A. Corporate level strategy</p>
                <p>B. Business level strategy</p>
                <p>C. Functional level strategy</p>
                <p>D. Operational level strategy</p>
                <p>7. In the input–transformation–output model, customer information and raw materials are examples of:</p>
                <p>A. Transforming resources</p>
                <p>B. Transformed resources (inputs)</p>
                <p>C. Outputs</p>
                <p>D. Performance objectives</p>
                <p>8. Facilities, staff and technology that act upon other resources are known as:</p>
                <p>A. Transformed resources</p>
                <p>B. Transforming resources</p>
                <p>C. Outputs</p>
                <p>D. Order winners</p>
                <p>9. Producing a bespoke, hand-made piece of furniture only after a specific customer order is received is an example of:</p>
                <p>A. Mass production</p>
                <p>B. Make-to-order</p>
                <p>C. Mass customisation</p>
                <p>D. Just-in-time retailing</p>
                <p>10. Producing standardised goods in large volumes and holding them in stock ahead of anticipated demand is known as:</p>
                <p>A. Make-to-order</p>
                <p>B. Mass production (make-to-stock)</p>
                <p>C. Fixed-position production</p>
                <p>D. Mass customisation</p>
                <div class="answer-key">
                    <p><strong>Answer key</strong></p>
                </div>
                <p>1B   2C   3B   4D   5B   6B   7B   8B   9B   10B</p>
            </section>

            <div class="chapter-divider"></div>

            <!-- CHAPTER 2: LO2 -->
            <section class="section" id="ch2">
                <h2><span class="ch-num">2</span> Improvement Methodologies in Operations Management (LO2)</h2>
                <p>Having established what operations management is and how it is structured, this chapter turns to how operations performance is measured and continuously improved — covering performance measurement and BPR, failure prevention and recovery, total quality management, and specific quality-improvement techniques. It maps to CIPS assessment criteria 2.1–2.4.</p>
                <h3 id="ch2-1">2.1 Analyse tools for improving performance in operations management</h3>
                <h4>2.1.1 The use of performance measurement in operations management</h4>
                <p>You cannot improve what you do not measure. Performance measurement provides the data operations managers need to identify problems, track progress and justify improvement investment. Measures should be linked back to the five performance objectives (quality, speed, dependability, flexibility, cost) and typically combine hard, quantitative Key Performance Indicators (KPIs — e.g. defect rate, on-time-in-full delivery, cost per unit) with softer, qualitative feedback (e.g. customer satisfaction surveys).</p>
                <h4>2.1.2 Setting performance targets</h4>
                <p>Targets translate strategic objectives into measurable, time-bound goals for operations teams. Good targets are typically SMART (Specific, Measurable, Achievable, Relevant, Time-bound) and are cascaded from corporate/business strategy down to operational level, so that day-to-day activity is aligned with organisational priorities.</p>
                <h4>2.1.3 Benchmarking in improving operations management</h4>
                <p>Benchmarking is the systematic comparison of an organisation&#x27;s processes and performance against a reference point, to identify improvement opportunities.</p>
                <ul>
                    <li>Internal benchmarking — comparing similar processes/units within the same organisation.</li>
                    <li>Competitive benchmarking — comparing directly against competitors.</li>
                    <li>Functional/generic benchmarking — comparing against best-practice organisations outside the immediate industry, performing a similar function/process.</li>
                </ul>
                <p>Benchmarking (recall from L5M2/L5M7 material also referenced elsewhere in the CIPS syllabus) helps set realistic, evidence-based targets, but comparisons must account for differences in context between organisations.</p>
                <h4>2.1.4 Building continuous improvement</h4>
                <p>Continuous improvement (often associated with the Japanese term Kaizen) is the ongoing, incremental pursuit of small improvements by everyone in the organisation, rather than relying solely on occasional large-scale change. It typically relies on structures such as improvement teams/quality circles, standardised problem-solving cycles (e.g. Plan-Do-Check-Act), and a culture that empowers staff to identify and fix problems at source.</p>
                <h4>2.1.5 The use of Business Process Re-engineering (BPR)</h4>
                <p>Business Process Re-engineering is the fundamental rethinking and radical redesign of business processes to achieve dramatic improvements in critical measures of performance such as cost, quality, service and speed. Unlike continuous improvement (small, ongoing steps), BPR is typically a one-off, top-down, disruptive change effort — often enabled by new technology — that questions why a process exists at all rather than simply refining it.</p>
                <h3 id="ch2-2">2.2 Explain techniques in failure prevention and recovery that can be applied in operations management</h3>
                <h4>2.2.1 Measuring failure and the impact of failure</h4>
                <p>Failure occurs whenever a process, product or service does not perform as intended. Failure has both direct costs (rework, scrap, warranty claims, compensation) and indirect costs (lost customer goodwill, reputational damage, lost future sales). Measuring failure rates (e.g. defects per million, downtime hours) is the first step to managing and reducing it.</p>
                <h4>2.2.2 Mechanisms to detect failure</h4>
                <p>Detection mechanisms range from simple visual inspection and checklists to automated sensors, statistical monitoring and customer feedback/complaints data. The earlier a failure is detected in the process, the cheaper it typically is to correct — detecting a defect at the customer is far more costly than detecting it on the production line.</p>
                <h4>2.2.3 Failure Mode and Effect Analysis (FMEA)</h4>
                <p>FMEA is a systematic, structured technique for identifying potential failure modes in a product, service or process before they occur, and assessing their likely causes and effects. Each potential failure is typically scored on severity, likelihood of occurrence and likelihood of detection, and these are combined (e.g. multiplied) to produce a Risk Priority Number (RPN) that helps prioritise which failure modes to address first.</p>
                <h4>2.2.4 Improving process reliability</h4>
                <p>Reliability can be improved through techniques such as: designing out unnecessary complexity; building in redundancy (e.g. back-up equipment/suppliers); improving component/material quality; and standardising work to reduce variability introduced by human error.</p>
                <h4>2.2.5 Maintenance and approaches to maintenance</h4>
                <ul>
                    <li>Reactive (breakdown) maintenance — equipment is repaired only after it fails; simple but can cause unplanned downtime and higher long-term cost.</li>
                    <li>Preventive maintenance — planned, scheduled servicing carried out at set intervals to reduce the likelihood of failure.</li>
                    <li>Predictive (condition-based) maintenance — uses monitoring data (e.g. vibration, temperature) to service equipment just before failure is likely, minimising both downtime and unnecessary servicing.</li>
                    <li>Total Productive Maintenance (TPM) — an organisation-wide approach that makes equipment maintenance everyone&#x27;s responsibility, not just specialist maintenance staff.</li>
                </ul>
                <h4>2.2.6 Failure distributions</h4>
                <p>The &#x27;bathtub curve&#x27; is a widely used model of failure rates over the life of equipment: a relatively high &#x27;infant mortality&#x27; failure rate early in life (design/manufacturing faults), followed by a long period of low, stable random failure, then a rising failure rate as the equipment wears out toward the end of its useful life. Understanding where an asset sits on this curve helps operations managers choose the most appropriate maintenance strategy.</p>
                <h4>2.2.7 Business continuity</h4>
                <p>A business continuity plan (BCP) sets out the arrangements an organisation puts in place to ensure critical activities can continue, or be recovered quickly, following a disruptive incident (e.g. fire, cyber-attack, supplier failure). Effective BCPs are documented, regularly tested/rehearsed, and reviewed to reflect changes in the organisation and its risk environment.</p>
                <h3 id="ch2-3">2.3 Evaluate the role of Total Quality Management (TQM) in operations management</h3>
                <h4>2.3.1 Approaches to total quality management</h4>
                <p>Quality management has evolved through several stages, each broader than the last: quality inspection (checking finished output and rejecting defects), quality assurance (systematic, planned activities across the whole process designed to prevent defects occurring in the first place), and total quality management (TQM) — an organisation-wide philosophy in which everyone, in every function, takes responsibility for quality and continuous improvement, with the customer&#x27;s needs at the centre of every decision.</p>
                <h4>2.3.2 The differences between TQM and quality assurance</h4>
                <h4>2.3.3 The work of pioneers of total quality management</h4>
                <ul>
                    <li>W. Edwards Deming — championed statistical process control and continuous improvement; developed the 14 points for management and popularised the Plan-Do-Check-Act (PDCA) cycle; argued that most quality problems stem from the system/process, not individual workers.</li>
                    <li>Joseph Juran — defined quality as &#x27;fitness for use&#x27; and emphasised the cost of quality (the cost of prevention and appraisal versus the cost of internal and external failure), and the importance of management leadership in quality.</li>
                    <li>Philip Crosby — associated with the concept of &#x27;zero defects&#x27; and the idea that quality is &#x27;free&#x27; because the cost of prevention is less than the cost of failure.</li>
                </ul>
                <p>These pioneers collectively shifted quality thinking from a narrow, end-of-line inspection activity toward a strategic, organisation-wide commitment embedded in culture and leadership.</p>
                <h3 id="ch2-4">2.4 Analyse techniques for quality improvement that can be applied in operations management</h3>
                <h4>2.4.1 Diagnosing quality problems</h4>
                <p>Before a quality problem can be solved, its root cause must be correctly diagnosed. Common diagnostic tools include cause-and-effect (fishbone/Ishikawa) diagrams, Pareto analysis (identifying the &#x27;vital few&#x27; causes responsible for most defects) and process flowcharting to pinpoint where in the process failures are introduced.</p>
                <h4>2.4.2 The use of statistical process control (SPC)</h4>
                <p>SPC uses statistical sampling and control charts to monitor a process while it is running, distinguishing between common-cause variation (natural, inherent variability that is always present) and special-cause variation (variability caused by a specific, identifiable and correctable problem). By plotting sample measurements against upper and lower control limits, operators can spot when a process is drifting out of control and intervene before defective output is produced.</p>
                <h4>2.4.3 Variation in process quality</h4>
                <p>All processes exhibit some natural variation. The goal of quality management is not to eliminate variation completely (which is usually impossible) but to understand its sources, reduce it where economically justified, and keep the process operating consistently within acceptable limits.</p>
                <h4>2.4.4 The Taguchi loss function</h4>
                <p>Genichi Taguchi challenged the traditional view that quality loss only occurs once output falls outside the upper or lower specification limits. His loss function proposes that any deviation from the ideal target value causes a loss (to the organisation and to society), even while still technically within specification — and that this loss increases (typically as a squared function) the further output drifts from the target. This encourages operations managers to aim for consistency around the target value, not merely &#x27;within tolerance&#x27;.</p>
                <h4>2.4.5 Poka-yoke (mistake-proofing)</h4>
                <p>Poka-yoke is a Japanese term meaning &#x27;mistake-proofing&#x27; or &#x27;avoiding inadvertent errors&#x27;. It refers to simple mechanisms built into a process, product or piece of equipment that prevent, correct, or draw attention to human error at the point it occurs — for example, a plug that can only be inserted one way, or software that will not let a form be submitted with a mandatory field left blank. Poka-yoke aims to make it impossible (or immediately obvious) to make a mistake, rather than relying on inspection to catch it afterwards.</p>
                <h4>2.4.6 The Six Sigma approach to quality improvement</h4>
                <p>Six Sigma is a rigorous, data-driven methodology aimed at reducing process variation to a level where defects occur extremely rarely (statistically, no more than 3.4 defects per million opportunities). Six Sigma projects typically follow the DMAIC cycle:</p>
                <div class="table-wrap">
                    <table>
                        <thead>
                            <tr><th>Stage</th><th>Focus</th></tr>
                        </thead>
                        <tbody>
                            <tr><td><strong>Define</strong></td><td>Define the problem, project scope, customer requirements and goals</td></tr>
                            <tr><td><strong>Measure</strong></td><td>Collect baseline data on current process performance</td></tr>
                            <tr><td><strong>Analyse</strong></td><td>Identify and validate the root cause(s) of variation/defects</td></tr>
                            <tr><td><strong>Improve</strong></td><td>Design, test and implement solutions that address the root cause</td></tr>
                            <tr><td><strong>Control</strong></td><td>Put controls in place (e.g. SPC) to sustain the improvement over time</td></tr>
                        </tbody>
                    </table>
                </div>
                <p>Six Sigma is often delivered through trained practitioners (colloquially ranked using martial-arts-style &#x27;belts&#x27; — e.g. Green Belt, Black Belt) and is frequently combined with Lean thinking (removing waste) in a hybrid &#x27;Lean Six Sigma&#x27; approach.</p>
                <h3 id="chapter-2-knowledge-check-10-objective-response-questions">Chapter 2 Knowledge Check — 10 Objective Response Questions</h3>
                <p>Choose the single best answer for each question (CIPS objective response style).</p>
                <p>1. Which of the following best describes the purpose of performance measurement in operations management?</p>
                <p>A. To replace the need for strategy</p>
                <p>B. To provide data that identifies problems, tracks progress and supports improvement decisions</p>
                <p>C. To eliminate the need for customer feedback</p>
                <p>D. To set prices for finished goods</p>
                <p>2. SMART targets are best described as:</p>
                <p>A. Targets set without reference to strategy</p>
                <p>B. Specific, Measurable, Achievable, Relevant and Time-bound</p>
                <p>C. Targets that never change once set</p>
                <p>D. Targets used only in the finance function</p>
                <p>3. Which of the following is an example of an INDIRECT cost of failure?</p>
                <p>A. Scrap material cost</p>
                <p>B. Warranty replacement cost</p>
                <p>C. Loss of customer goodwill and future sales</p>
                <p>D. Cost of rework labour</p>
                <p>4. Generally, the cost of correcting a failure is:</p>
                <p>A. The same regardless of when it is detected</p>
                <p>B. Lower the earlier it is detected in the process</p>
                <p>C. Higher the earlier it is detected in the process</p>
                <p>D. Impossible to estimate</p>
                <p>5. In FMEA, the Risk Priority Number (RPN) is typically calculated from:</p>
                <p>A. Severity, occurrence and detection ratings</p>
                <p>B. Cost, quality and speed only</p>
                <p>C. Customer satisfaction scores alone</p>
                <p>D. Delivery lead time only</p>
                <p>6. Which quality approach is focused narrowly on checking finished output and rejecting defective items?</p>
                <p>A. Quality inspection</p>
                <p>B. Quality assurance</p>
                <p>C. Total Quality Management</p>
                <p>D. Business Process Re-engineering</p>
                <p>7. Quality assurance is best described as:</p>
                <p>A. An organisation-wide philosophy owned by every employee</p>
                <p>B. Planned, systematic activity designed to prevent defects before they occur</p>
                <p>C. A synonym for total quality management</p>
                <p>D. A one-off improvement project</p>
                <p>8. A cause-and-effect (fishbone/Ishikawa) diagram is primarily used to:</p>
                <p>A. Calculate the Risk Priority Number in FMEA</p>
                <p>B. Diagnose the possible root causes of a quality problem</p>
                <p>C. Set delivery schedules</p>
                <p>D. Calculate the cost of capital</p>
                <p>9. In statistical process control, &#x27;common-cause&#x27; variation refers to:</p>
                <p>A. Variation caused by a specific, identifiable and correctable problem</p>
                <p>B. Natural, inherent variability that is always present in a process</p>
                <p>C. Variation that only occurs in services, never manufacturing</p>
                <p>D. Variation that can be eliminated completely at zero cost</p>
                <p>10. Statistical process control (SPC) control charts are used to:</p>
                <p>A. Distinguish common-cause from special-cause variation and flag when a process drifts out of control</p>
                <p>B. Calculate order winners and qualifiers</p>
                <p>C. Design facility layouts</p>
                <p>D. Set corporate-level strategy</p>
                <div class="answer-key">
                    <p><strong>Answer key</strong></p>
                </div>
                <p>1B   2B   3C   4B   5A   6A   7B   8B   9B   10A</p>
            <!-- CHAPTER 1: LO1 -->
            <section class="section" id="ch1">
                <h2><span class="ch-num">1</span> The Concept and Scope of Operations Management (LO1)</h2>
                <h3 id="ch1-1">1.1 Role and activities of operations management — 10 questions</h3>
                <p>Choose the single best answer for each question (CIPS objective response style).</p>
                <p>1. Which of the following is the best definition of operations management?</p>
                <p>A. The management of an organisation&#x27;s marketing budget</p>
                <p>B. The planning, organising, controlling and co-ordinating of resources and processes used to transform inputs into outputs</p>
                <p>C. The recruitment and training of operational staff only</p>
                <p>D. The negotiation of supplier contracts</p>
                <p>2. Which of the following is an example of an intangible output (a service)?</p>
                <p>A. A motor car</p>
                <p>B. A tin of processed food</p>
                <p>C. A hairdressing appointment</p>
                <p>D. A mobile phone</p>
                <p>3. &#x27;Efficiency&#x27; in operations management is best described as:</p>
                <p>A. Doing the right things</p>
                <p>B. Using the minimum resource necessary to achieve an outcome</p>
                <p>C. Achieving the intended result regardless of cost</p>
                <p>D. Maximising customer contact</p>
                <p>4. Which of the following would typically be classed as a &#x27;support&#x27; (back office) operation?</p>
                <p>A. A retail store&#x27;s checkout process</p>
                <p>B. A factory&#x27;s final product assembly line</p>
                <p>C. An organisation&#x27;s internal payroll processing</p>
                <p>D. A restaurant&#x27;s table service</p>
                <p>5. Which functional area is primarily responsible for generating customer demand that operations must fulfil?</p>
                <p>A. Finance</p>
                <p>B. Marketing</p>
                <p>C. Human resources</p>
                <p>D. Procurement</p>
                <p>6. Which sector is most likely to involve simultaneous production and consumption with high customer contact?</p>
                <p>A. Manufacturing</p>
                <p>B. Extraction/mining</p>
                <p>C. Services</p>
                <p>D. Construction</p>
                <p>7. Construction projects are typically characterised by:</p>
                <p>A. High volume, low variety, continuous flow</p>
                <p>B. One-off or low-volume, project-based operations with long lead times</p>
                <p>C. Simultaneous production and consumption</p>
                <p>D. Zero customer contact</p>
                <p>8. Public sector operations are primarily judged on:</p>
                <p>A. Maximising shareholder profit</p>
                <p>B. Value for money and service standards</p>
                <p>C. Market share growth alone</p>
                <p>D. Brand advertising spend</p>
                <p>9. A resource, in the context of operations management, refers to:</p>
                <p>A. Only the raw materials used in manufacturing</p>
                <p>B. Finance, materials, assets and staff skills/experience used to get work done</p>
                <p>C. The finished goods held in a warehouse</p>
                <p>D. Customer feedback data only</p>
                <p>10. Most real-world operations are best described as:</p>
                <p>A. Purely product-based, with no service element</p>
                <p>B. Purely service-based, with no tangible element</p>
                <p>C. A blend of product and service elements</p>
                <p>D. Entirely automated with no human involvement</p>
                <div class="answer-key">
                    <p><strong>Answer key</strong></p>
                </div>
                <p>1B   2C   3B   4C   5B   6C   7B   8B   9B   10C</p>
                <h3 id="ch1-2">1.2 Objectives and strategies of operations management — 10 questions</h3>
                <p>Choose the single best answer for each question (CIPS objective response style).</p>
                <p>1. In the Hayes and Wheelwright four-stage model, an operations function that only fixes machines when they break down, with no proactive planning, is best described as:</p>
                <p>A. Externally supportive</p>
                <p>B. Internally supportive</p>
                <p>C. Externally neutral</p>
                <p>D. Internally neutral</p>
                <p>2. An operations function that is &#x27;externally neutral&#x27; is primarily characterised by:</p>
                <p>A. Driving the organisation&#x27;s overall competitive strategy</p>
                <p>B. Benchmarking against, and matching, comparable external organisations</p>
                <p>C. Ignoring the external market entirely</p>
                <p>D. Being viewed as holding the organisation back</p>
                <p>3. Which level of strategy focuses on how a specific business unit will compete within its market?</p>
                <p>A. Corporate level strategy</p>
                <p>B. Business level strategy</p>
                <p>C. Functional level strategy</p>
                <p>D. Operational level strategy</p>
                <p>4. According to Hill (2005), what is the first step in developing an operations strategy?</p>
                <p>A. Evaluate strategy options</p>
                <p>B. Identify implementation strategies</p>
                <p>C. Define corporate objectives</p>
                <p>D. Define operations objectives</p>
                <p>5. Which performance objective is primarily concerned with keeping delivery promises made to customers?</p>
                <p>A. Quality</p>
                <p>B. Dependability</p>
                <p>C. Flexibility</p>
                <p>D. Cost</p>
                <p>6. The ability to vary the mix of products or services produced is an example of which type of flexibility?</p>
                <p>A. Volume flexibility</p>
                <p>B. Time flexibility</p>
                <p>C. Mix flexibility</p>
                <p>D. Innovation flexibility</p>
                <p>7. A &#x27;bottom-up&#x27; perspective of operations strategy is best described as:</p>
                <p>A. Strategy dictated solely by the board with no operational input</p>
                <p>B. Strategy emerging from operational experience and improvement activity, which then informs higher-level strategy</p>
                <p>C. A strategy that only applies to junior staff</p>
                <p>D. A strategy set exclusively by external consultants</p>
                <p>8. An &#x27;order qualifier&#x27; is best defined as:</p>
                <p>A. The single factor that always wins the most business</p>
                <p>B. A factor that must meet a minimum standard for a customer to consider the supplier at all</p>
                <p>C. A discount offered to secure repeat business</p>
                <p>D. A KPI used only for internal reporting</p>
                <p>9. If a customer chooses one supplier over another primarily because of faster delivery, delivery speed is acting as:</p>
                <p>A. An order qualifier only</p>
                <p>B. An order winner</p>
                <p>C. A support activity</p>
                <p>D. A corporate-level objective</p>
                <p>10. Which of the following best explains why performance objective priorities can differ within the same organisation?</p>
                <p>A. All processes must always share identical priorities</p>
                <p>B. Different processes serve different customer needs and competitive requirements</p>
                <p>C. Performance objectives cannot vary once set</p>
                <p>D. Only the finance function can set performance priorities</p>
                <div class="answer-key">
                    <p><strong>Answer key</strong></p>
                </div>
                <p>1D   2B   3B   4C   5B   6C   7B   8B   9B   10B</p>
                <h3 id="ch1-3">1.3 Operations management processes — 10 questions</h3>
                <p>Choose the single best answer for each question (CIPS objective response style).</p>
                <p>1. In the input–transformation–output model, customer information and raw materials are examples of:</p>
                <p>A. Transforming resources</p>
                <p>B. Transformed resources (inputs)</p>
                <p>C. Outputs</p>
                <p>D. Performance objectives</p>
                <p>2. Facilities, staff and technology that act upon other resources are known as:</p>
                <p>A. Transformed resources</p>
                <p>B. Transforming resources</p>
                <p>C. Outputs</p>
                <p>D. Order winners</p>
                <p>3. Which of the four Vs refers to the range or assortment of products/services offered?</p>
                <p>A. Volume</p>
                <p>B. Variety</p>
                <p>C. Variation</p>
                <p>D. Visibility</p>
                <p>4. A process with high repetition and a high degree of staff specialisation is best described as having:</p>
                <p>A. Low volume</p>
                <p>B. High volume</p>
                <p>C. High variety</p>
                <p>D. High visibility</p>
                <p>5. Which of the four Vs has the most direct implication for capacity management, according to the syllabus?</p>
                <p>A. Volume</p>
                <p>B. Variety</p>
                <p>C. Variation</p>
                <p>D. Visibility</p>
                <p>6. A back-office process such as warehouse picking, which customers never directly see, has:</p>
                <p>A. High visibility</p>
                <p>B. Low visibility</p>
                <p>C. High variation only</p>
                <p>D. No transformation process</p>
                <p>7. Generally, which combination of the four Vs results in the LOWEST process cost?</p>
                <p>A. Low volume, high variety, high variation, high visibility</p>
                <p>B. High volume, low variety, low variation, low visibility</p>
                <p>C. High volume, high variety, high variation, low visibility</p>
                <p>D. Low volume, low variety, high variation, high visibility</p>
                <p>8. A bank counter serving customers face-to-face typically displays which characteristic, compared with an ATM?</p>
                <p>A. Lower visibility</p>
                <p>B. Higher visibility</p>
                <p>C. Higher volume</p>
                <p>D. Lower variety</p>
                <p>9. Which of the following is NOT one of Slack&#x27;s four Vs?</p>
                <p>A. Volume</p>
                <p>B. Value</p>
                <p>C. Variety</p>
                <p>D. Visibility</p>
                <p>10. The conversion of ingredients into loaves of bread in a factory is an example of which stage of the ITO model?</p>
                <p>A. Input</p>
                <p>B. Transformation process</p>
                <p>C. Output</p>
                <p>D. Order qualifier</p>
                <div class="answer-key">
                    <p><strong>Answer key</strong></p>
                </div>
                <p>1B   2B   3B   4B   5C   6B   7B   8B   9B   10B</p>
                <h3 id="ch1-4">1.4 OM applied across supply chains — 10 questions</h3>
                <p>Choose the single best answer for each question (CIPS objective response style).</p>
                <p>1. Producing a bespoke, hand-made piece of furniture only after a specific customer order is received is an example of:</p>
                <p>A. Mass production</p>
                <p>B. Make-to-order</p>
                <p>C. Mass customisation</p>
                <p>D. Just-in-time retailing</p>
                <p>2. Producing standardised goods in large volumes and holding them in stock ahead of anticipated demand is known as:</p>
                <p>A. Make-to-order</p>
                <p>B. Mass production (make-to-stock)</p>
                <p>C. Fixed-position production</p>
                <p>D. Mass customisation</p>
                <p>3. A sandwich shop offering standard fillings that customers combine to their own preference is an example of:</p>
                <p>A. Make-to-order</p>
                <p>B. Mass production</p>
                <p>C. Mass customisation</p>
                <p>D. Fixed-position layout</p>
                <p>4. Which layout type is most appropriate when the product is too large or heavy to move, so the transformation process occurs at a fixed site?</p>
                <p>A. Product (flow) layout</p>
                <p>B. Cell layout</p>
                <p>C. Fixed-position layout</p>
                <p>D. Functional (process) layout</p>
                <p>5. Which of the following is a typical characteristic of construction sector operations?</p>
                <p>A. High volume, low variety, continuous production</p>
                <p>B. Project-based, low-volume, long lead-time operations</p>
                <p>C. Simultaneous production and consumption at very low visibility</p>
                <p>D. No requirement for sub-contractor coordination</p>
                <p>6. Public sector operations are typically evaluated against:</p>
                <p>A. Shareholder dividend growth</p>
                <p>B. Value for money and service quality</p>
                <p>C. Global market share</p>
                <p>D. Brand licensing revenue</p>
                <p>7. Which of the following is a key risk introduced by global sourcing that operations managers must plan for?</p>
                <p>A. Reduced need for quality assurance</p>
                <p>B. Shorter and simpler lead times</p>
                <p>C. Increased currency, political and logistics risk</p>
                <p>D. Elimination of cultural differences</p>
                <p>8. A hospital&#x27;s need to flex bed capacity and staffing to match fluctuating patient numbers is primarily a response to which of the four Vs?</p>
                <p>A. Volume only</p>
                <p>B. Variation</p>
                <p>C. Low visibility</p>
                <p>D. Low variety</p>
                <p>9. Which of the following factors would most likely influence a facility LOCATION decision?</p>
                <p>A. Choice of numbering system for invoices</p>
                <p>B. Availability of labour and closeness to markets/suppliers</p>
                <p>C. Colour scheme of the corporate logo</p>
                <p>D. Choice of email provider</p>
                <p>10. A good plant/facility layout should aim to be all of the following EXCEPT:</p>
                <p>A. Clear and safe for staff and customers</p>
                <p>B. Designed to minimise lead time</p>
                <p>C. Designed to maximise unnecessary staff movement</p>
                <p>D. An efficient use of available space</p>
                <div class="answer-key">
                    <p><strong>Answer key</strong></p>
                </div>
                <p>1B   2B   3C   4C   5B   6B   7C   8B   9B   10C</p>
            </section>

            <div class="chapter-divider"></div>

            <!-- CHAPTER 2: LO2 -->
            <section class="section" id="ch2">
                <h2><span class="ch-num">2</span> Improvement Methodologies in Operations Management (LO2)</h2>
                <h3 id="ch2-1">2.1 Tools for improving performance — 10 questions</h3>
                <p>Choose the single best answer for each question (CIPS objective response style).</p>
                <p>1. Which of the following best describes the purpose of performance measurement in operations management?</p>
                <p>A. To replace the need for strategy</p>
                <p>B. To provide data that identifies problems, tracks progress and supports improvement decisions</p>
                <p>C. To eliminate the need for customer feedback</p>
                <p>D. To set prices for finished goods</p>
                <p>2. SMART targets are best described as:</p>
                <p>A. Targets set without reference to strategy</p>
                <p>B. Specific, Measurable, Achievable, Relevant and Time-bound</p>
                <p>C. Targets that never change once set</p>
                <p>D. Targets used only in the finance function</p>
                <p>3. Comparing an organisation&#x27;s process against a best-practice organisation outside its own industry is known as:</p>
                <p>A. Internal benchmarking</p>
                <p>B. Competitive benchmarking</p>
                <p>C. Functional/generic benchmarking</p>
                <p>D. Statistical process control</p>
                <p>4. Continuous improvement (Kaizen) is best characterised by:</p>
                <p>A. Large, one-off, radical redesign of processes</p>
                <p>B. Ongoing, incremental improvements involving all staff</p>
                <p>C. Complete replacement of all operations technology</p>
                <p>D. A focus solely on cost-cutting</p>
                <p>5. Which methodology involves the fundamental rethinking and radical redesign of processes to achieve dramatic performance improvement?</p>
                <p>A. Continuous improvement</p>
                <p>B. Business Process Re-engineering (BPR)</p>
                <p>C. Statistical process control</p>
                <p>D. Poka-yoke</p>
                <p>6. Comparing the performance of two similar production lines within the same company is an example of:</p>
                <p>A. Competitive benchmarking</p>
                <p>B. Internal benchmarking</p>
                <p>C. Generic benchmarking</p>
                <p>D. External auditing</p>
                <p>7. Which of the following is a key risk of BPR, given its radical and disruptive nature?</p>
                <p>A. It never involves any risk</p>
                <p>B. It can be highly disruptive and carries higher implementation risk than incremental change</p>
                <p>C. It always costs less than continuous improvement</p>
                <p>D. It requires no senior management sponsorship</p>
                <p>8. Cascading corporate strategy into measurable, time-bound operational goals is an example of:</p>
                <p>A. Benchmarking</p>
                <p>B. Setting performance targets</p>
                <p>C. Business process re-engineering</p>
                <p>D. Failure mode and effect analysis</p>
                <p>9. Quality circles and standardised problem-solving cycles most directly support which improvement approach?</p>
                <p>A. Business Process Re-engineering</p>
                <p>B. Continuous improvement</p>
                <p>C. Facility relocation</p>
                <p>D. Global sourcing</p>
                <p>10. A limitation to be aware of when using competitive benchmarking is that:</p>
                <p>A. It always produces identical results across all sectors</p>
                <p>B. Differences in organisational context can limit direct comparability</p>
                <p>C. It cannot be used alongside performance targets</p>
                <p>D. It replaces the need for KPIs</p>
                <div class="answer-key">
                    <p><strong>Answer key</strong></p>
                </div>
                <p>1B   2B   3C   4B   5B   6B   7B   8B   9B   10B</p>
                <h3 id="ch2-2">2.2 Failure prevention and recovery — 10 questions</h3>
                <p>Choose the single best answer for each question (CIPS objective response style).</p>
                <p>1. Which of the following is an example of an INDIRECT cost of failure?</p>
                <p>A. Scrap material cost</p>
                <p>B. Warranty replacement cost</p>
                <p>C. Loss of customer goodwill and future sales</p>
                <p>D. Cost of rework labour</p>
                <p>2. Generally, the cost of correcting a failure is:</p>
                <p>A. The same regardless of when it is detected</p>
                <p>B. Lower the earlier it is detected in the process</p>
                <p>C. Higher the earlier it is detected in the process</p>
                <p>D. Impossible to estimate</p>
                <p>3. In FMEA, the Risk Priority Number (RPN) is typically calculated from:</p>
                <p>A. Severity, occurrence and detection ratings</p>
                <p>B. Cost, quality and speed only</p>
                <p>C. Customer satisfaction scores alone</p>
                <p>D. Delivery lead time only</p>
                <p>4. Which maintenance approach involves repairing equipment only after it has failed?</p>
                <p>A. Preventive maintenance</p>
                <p>B. Predictive maintenance</p>
                <p>C. Reactive (breakdown) maintenance</p>
                <p>D. Total Productive Maintenance</p>
                <p>5. Which maintenance approach uses condition-monitoring data (e.g. vibration or temperature readings) to service equipment just before failure is likely?</p>
                <p>A. Reactive maintenance</p>
                <p>B. Predictive maintenance</p>
                <p>C. Total Productive Maintenance only</p>
                <p>D. No maintenance is needed</p>
                <p>6. Total Productive Maintenance (TPM) is best described as:</p>
                <p>A. Maintenance carried out solely by specialist external contractors</p>
                <p>B. An organisation-wide approach making maintenance everyone&#x27;s responsibility</p>
                <p>C. A synonym for reactive maintenance</p>
                <p>D. A maintenance approach used only in the service sector</p>
                <p>7. The &#x27;bathtub curve&#x27; models which of the following?</p>
                <p>A. Customer satisfaction over time</p>
                <p>B. Failure rate over the life of equipment</p>
                <p>C. Inventory holding cost over time</p>
                <p>D. Currency exchange rate volatility</p>
                <p>8. According to the bathtub curve, a high &#x27;infant mortality&#x27; failure rate is most likely caused by:</p>
                <p>A. Equipment wearing out at the end of its life</p>
                <p>B. Design or manufacturing faults early in the equipment&#x27;s life</p>
                <p>C. Random failures during the equipment&#x27;s useful life</p>
                <p>D. Excessive preventive maintenance</p>
                <p>9. A business continuity plan (BCP) is primarily designed to:</p>
                <p>A. Increase product variety</p>
                <p>B. Enable critical activities to continue or recover quickly after a disruptive incident</p>
                <p>C. Reduce the number of suppliers used</p>
                <p>D. Replace the need for quality control</p>
                <p>10. Which of the following is good practice for maintaining an effective business continuity plan?</p>
                <p>A. Writing it once and never reviewing it again</p>
                <p>B. Regularly testing/rehearsing and reviewing it as risks change</p>
                <p>C. Keeping it confidential from all operational staff</p>
                <p>D. Relying solely on reactive maintenance instead</p>
                <div class="answer-key">
                    <p><strong>Answer key</strong></p>
                </div>
                <p>1C   2B   3A   4C   5B   6B   7B   8B   9B   10B</p>
                <h3 id="ch2-3">2.3 Total Quality Management — 10 questions</h3>
                <p>Choose the single best answer for each question (CIPS objective response style).</p>
                <p>1. Which quality approach is focused narrowly on checking finished output and rejecting defective items?</p>
                <p>A. Quality inspection</p>
                <p>B. Quality assurance</p>
                <p>C. Total Quality Management</p>
                <p>D. Business Process Re-engineering</p>
                <p>2. Quality assurance is best described as:</p>
                <p>A. An organisation-wide philosophy owned by every employee</p>
                <p>B. Planned, systematic activity designed to prevent defects before they occur</p>
                <p>C. A synonym for total quality management</p>
                <p>D. A one-off improvement project</p>
                <p>3. Total Quality Management (TQM) differs from quality assurance mainly because TQM is:</p>
                <p>A. Narrower in scope than QA</p>
                <p>B. An organisation-wide culture in which everyone is responsible for quality</p>
                <p>C. Only concerned with final inspection</p>
                <p>D. Only relevant to manufacturing organisations</p>
                <p>4. Which quality pioneer is most closely associated with the Plan-Do-Check-Act (PDCA) cycle and the &#x27;14 points for management&#x27;?</p>
                <p>A. Philip Crosby</p>
                <p>B. Joseph Juran</p>
                <p>C. W. Edwards Deming</p>
                <p>D. Kaoru Ishikawa</p>
                <p>5. Joseph Juran defined quality as:</p>
                <p>A. Zero defects at any cost</p>
                <p>B. Fitness for use</p>
                <p>C. Conformance to advertising claims only</p>
                <p>D. A purely financial accounting measure</p>
                <p>6. Philip Crosby is most associated with which concept?</p>
                <p>A. The bathtub curve</p>
                <p>B. Zero defects and &#x27;quality is free&#x27;</p>
                <p>C. The Taguchi loss function</p>
                <p>D. Mass customisation</p>
                <p>7. Deming argued that the majority of quality problems in an organisation stem from:</p>
                <p>A. Individual worker negligence alone</p>
                <p>B. The system/process itself, which management is responsible for</p>
                <p>C. Customer behaviour</p>
                <p>D. External regulators</p>
                <p>8. The &#x27;cost of quality&#x27; concept, associated with Juran, contrasts prevention and appraisal costs with:</p>
                <p>A. Marketing costs</p>
                <p>B. Internal and external failure costs</p>
                <p>C. Recruitment costs</p>
                <p>D. Tax costs</p>
                <p>9. Which of the following best reflects a TQM culture?</p>
                <p>A. Only the quality department is responsible for defects</p>
                <p>B. Every employee, across every function, takes ownership of quality</p>
                <p>C. Quality is reviewed only once a year</p>
                <p>D. Customer needs are considered only at the design stage</p>
                <p>10. Compared with quality inspection, quality assurance is:</p>
                <p>A. A purely reactive, end-of-line activity</p>
                <p>B. A more proactive, planned approach aimed at preventing defects</p>
                <p>C. Identical in scope and timing</p>
                <p>D. Only applicable to services, never products</p>
                <div class="answer-key">
                    <p><strong>Answer key</strong></p>
                </div>
                <p>1A   2B   3B   4C   5B   6B   7B   8B   9B   10B</p>
                <h3 id="ch2-4">2.4 Quality improvement techniques — 10 questions</h3>
                <p>Choose the single best answer for each question (CIPS objective response style).</p>
                <p>1. A cause-and-effect (fishbone/Ishikawa) diagram is primarily used to:</p>
                <p>A. Calculate the Risk Priority Number in FMEA</p>
                <p>B. Diagnose the possible root causes of a quality problem</p>
                <p>C. Set delivery schedules</p>
                <p>D. Calculate the cost of capital</p>
                <p>2. In statistical process control, &#x27;common-cause&#x27; variation refers to:</p>
                <p>A. Variation caused by a specific, identifiable and correctable problem</p>
                <p>B. Natural, inherent variability that is always present in a process</p>
                <p>C. Variation that only occurs in services, never manufacturing</p>
                <p>D. Variation that can be eliminated completely at zero cost</p>
                <p>3. Statistical process control (SPC) control charts are used to:</p>
                <p>A. Distinguish common-cause from special-cause variation and flag when a process drifts out of control</p>
                <p>B. Calculate order winners and qualifiers</p>
                <p>C. Design facility layouts</p>
                <p>D. Set corporate-level strategy</p>
                <p>4. The Taguchi loss function proposes that:</p>
                <p>A. Loss only occurs once output falls outside specification limits</p>
                <p>B. Any deviation from the target value causes a loss, even within specification limits</p>
                <p>C. Quality loss cannot be measured</p>
                <p>D. Variation should always be eliminated regardless of cost</p>
                <p>5. Poka-yoke is best described as:</p>
                <p>A. A statistical sampling technique for monitoring variation</p>
                <p>B. A mechanism that prevents, corrects or draws attention to human error at the point it occurs</p>
                <p>C. A method for calculating the cost of quality</p>
                <p>D. A synonym for Business Process Re-engineering</p>
                <p>6. A plug designed so it can only be inserted into a socket one way round is an example of:</p>
                <p>A. Statistical process control</p>
                <p>B. Poka-yoke (mistake-proofing)</p>
                <p>C. The Taguchi loss function</p>
                <p>D. Six Sigma DMAIC</p>
                <p>7. Six Sigma aims to reduce process variation to a level of approximately:</p>
                <p>A. 3.4 defects per million opportunities</p>
                <p>B. 34% defect rate</p>
                <p>C. 3.4% defect rate</p>
                <p>D. No target defect level is set</p>
                <p>8. In the Six Sigma DMAIC cycle, which stage focuses on identifying and validating the root cause of variation?</p>
                <p>A. Define</p>
                <p>B. Measure</p>
                <p>C. Analyse</p>
                <p>D. Control</p>
                <p>9. In the Six Sigma DMAIC cycle, which stage focuses on putting mechanisms in place (such as SPC) to sustain an improvement?</p>
                <p>A. Define</p>
                <p>B. Improve</p>
                <p>C. Control</p>
                <p>D. Measure</p>
                <p>10. Six Sigma is frequently combined with which other improvement approach to form &#x27;Lean Six Sigma&#x27;?</p>
                <p>A. Business Process Re-engineering</p>
                <p>B. Lean thinking (waste removal)</p>
                <p>C. Total Productive Maintenance</p>
                <p>D. Order qualifying and winning analysis</p>
                <div class="answer-key">
                    <p><strong>Answer key</strong></p>
                </div>
                <p>1B   2B   3A   4B   5B   6B   7A   8C   9C   10B</p>
            </section>

        </main>
    </div>

    <!-- Footer -->
    <footer class="footer">
        <p>© Mutalex Academy — CIPS Level 5 Advanced Diploma | L5M9 Operations Management</p>
        <p style="margin-top: 8px; opacity: 0.7;">Comprehensive Tutorial Lecture Notes for Exam Preparation</p>
    </footer>
<script src="../assets/js/resources-header-injector.js"></script>
</body>
</html>
