By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
For Scrum Teams, Agile Coaches, and Certification Candidates (PSM, CSM, PSPO, etc.)
You’re a Scrum Master or Agile Coach. Your team says they’re "Agile," but: - Work sits in "Waiting for Review" for weeks. - Developers are burned out, morale is low, and turnover is rising. - Stakeholders complain that "nothing gets delivered" despite the team working overtime.
Measuring Agility isn’t about vanity metrics (e.g., "velocity")—it’s about diagnosing bottlenecks, improving flow, and keeping teams happy. If you ignore it: - Flow Efficiency drops-Work stalls in queues (e.g., code reviews, QA, deployments). - Happiness plummets-Top talent leaves, and productivity crashes. - Throughput stagnates-Stakeholders lose trust, and budgets get cut.
Real-world scenario: You inherit a "Scrum" team where: - Sprint Goals are rarely met. - The board shows 20 "In Progress" tickets but only 2 "Done" per sprint. - The team complains about "too many meetings" and "constant context-switching."
Your mission: Use Flow Efficiency, Happiness, and Throughput to prove where the problems are and fix them systematically.
(Active Time) / (Active Time + Wait Time) × 100
A Scrum/Kanban board (Jira, Azure DevOps, Trello, or even a physical board). ? Historical data (at least 2–3 sprints of ticket movement). ? Team buy-in (explain why you’re measuring—don’t just impose metrics).
Goal: Find out how much time work is actually being worked on vs. sitting idle.
Issues-Search-Export-CSV
python # Example for one ticket active_time = 2 # hours wait_time = 48 # hours flow_efficiency = (active_time / (active_time + wait_time)) * 100 print(f"Flow Efficiency: {flow_efficiency:.1f}%") # Output: 4.0%
? Insight: - 2.3% Flow Efficiency = 97.7% of time is wasted. - Root cause? Likely handoffs (e.g., dev-QA-deploy) or dependencies (e.g., waiting for another team).
Goal: Track daily team morale to catch issues before they impact performance.
? Insight: - Charlie is consistently unhappy-Check workload, blockers, or personal issues. - Bob’s mood dropped suddenly-Ask: "What changed yesterday?"
Goal: Predict delivery and identify bottlenecks.
Count of "Done" tickets / Sprint duration (e.g., 10 tickets/2 weeks = 5 tickets/week).
Average time from "In Progress"-"Done."
(If "In Progress" band widens-bottleneck in development or testing.)
? Insight: - Throughput dropped from 10-5 tickets/sprint?-Check for new blockers (e.g., slow code reviews, missing environments). - Cycle time increased?-Look for "zombie tickets" (stuck in "In Progress" for weeks).
Goal: Turn data into action.
Velocity (subjective, doesn’t show bottlenecks).
"What’s the difference between cycle time and lead time?"
Lead Time: Time from request-delivery (includes "waiting to start").
"How should a Scrum Master use happiness metrics?"
Performance evaluation (don’t tie to bonuses).
"What’s the most likely cause of low Flow Efficiency?"
"Your team’s throughput dropped from 10-5 tickets/sprint. What’s the most likely cause?" --New dependencies (e.g., waiting for another team). --Increased WIP (too many tickets in progress). --Developers are slacking (unlikely—throughput is objective).
You’re a Scrum Master for a team with: - 10 tickets in "In Progress" (but only 2 devs). - Cycle time of 15 days (industry average: 5–7 days). - Happiness score of 2/5 (team complains about "constant context-switching").
What’s the first action you take to improve Flow Efficiency?
Limit WIP to 2 tickets per developer (4 total). - Why it works: - Forces the team to finish work before starting new tickets. - Reduces context-switching (happiness improves). - Cycle time drops (fewer tickets in progress = faster completion).
Exam Traps: - Velocity-Throughput (story points are subjective; throughput is objective). - Cycle Time-Lead Time (cycle time starts when work begins). - Happiness-Productivity (happy teams become productive, not the other way around).
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.