Skip to content
tezvyn:

All bites

The whole library, newest first. Filter by what you are here for, or pick a topic if you already know.

8668 bites

Page 240

Agile & Scrum2 min read

How would you implement Classes of Service in Kanban?

Tests your grasp of risk management and flow optimization in Kanban. A good answer defines classes (Expedite, Fixed Date), explains implementation via swimlanes and WIP limits, and gives an example showing trade-offs.

Lead Time vs. Cycle Time in Kanban
Agile & Scrum2 min read

Lead Time vs. Cycle Time in Kanban

Tests your understanding of core Kanban metrics for process improvement. Define Lead Time (request to delivery) and Cycle Time (work start to completion), noting Cycle Time is a subset. A red flag is confusing the two or being imprecise about start/end points.

What initial columns would you set up on a Kanban board?
Agile & Scrum2 min read

What initial columns would you set up on a Kanban board?

Tests your grasp of Kanban's core goal: visualizing workflow. Start with a simple board (To Do, In Progress, Done), explaining how each column represents a work state. A red flag is creating an overly complex board without justifying the need for each stage.

Describe your framework for managing tech debt in product discovery.
Agile & Scrum2 min read

Describe your framework for managing tech debt in product discovery.

Tests your strategic view of tech debt. A good answer frames debt as a tool, describes a framework for categorizing and tracking it, and explains how to tie repayment to product milestones. A red flag is viewing all debt as bad or lacking a concrete.

Agile & Scrum2 min read

Handling a High-Cost, Low-Value Feature Request

Tests your ability to influence product using data and lean principles, not just technical objections. Quantify cost in engineer-weeks, ask for value metrics, then propose cheaper experiments (e.g., a fake door test).

How do you measure a new feature's success beyond bugs and uptime?
Agile & Scrum2 min read

How do you measure a new feature's success beyond bugs and uptime?

Tests if you connect engineering to business value. A great answer links success to the feature's original goals, proposes user behavior and business impact metrics, and names specific tools.

Agile & Scrum2 min read

How to handle user feedback that invalidates your current sprint's work?

Tests your grasp of Scrum's adaptation principle. A great answer involves immediately notifying the Product Owner, assessing Sprint Goal impact, and proposing technical pivots like feature flagging. A red flag is continuing to build the invalidated feature.

Differentiating an MVP from a throwaway prototype
Agile & Scrum2 min read

Differentiating an MVP from a throwaway prototype

Tests your grasp of strategic technical investment. Differentiate by intent: an MVP is the first version, a prototype is disposable. A great answer introduces Minimum Viable Architecture (MVA) to support future needs.

How would you A/B test a redesigned dashboard?
Agile & Scrum2 min read

How would you A/B test a redesigned dashboard?

This tests your ability to translate a product goal into a technical plan. A good answer defines "engagement" with metrics, outlines the bucketing and instrumentation strategy, and discusses statistical significance.

Agile & Scrum2 min read

What is an engineer's role in story refinement?

Tests your role in translating needs to tech specs. A great answer covers clarifying questions, task breakdown, sizing, and acceptance criteria. A red flag is passively waiting for tasks instead of proactively de-risking the work.

What information do you need in a user story?
Agile & Scrum2 min read

What information do you need in a user story?

This tests your ability to connect engineering work to user value. A great answer covers the user persona (who), their motivation (why), and measurable success criteria (what), explaining how this context informs technical decisions.

Agile & Scrum2 min read

Shared Solution vs. Duplication for Cross-Cutting Concerns

Tests your judgment on trade-offs between duplication, coupling, and velocity. A good answer weighs the cost of premature abstraction against future refactoring, using triggers like the 'Rule of Three' and evaluating the concern's volatility.

How would you refactor an inverted test pyramid?
Agile & Scrum2 min read

How would you refactor an inverted test pyramid?

This tests your ability to create a pragmatic, multi-sprint strategy for tech debt. A good answer includes analyzing the suite, quarantining flaky tests, enforcing new coverage standards, and incrementally refactoring. A red flag is proposing a total rewrite.

Trunk-Based Development vs. GitFlow for High-Frequency Releases
Agile & Scrum2 min read

Trunk-Based Development vs. GitFlow for High-Frequency Releases

This tests your grasp of modern CI/CD trade-offs. A great answer explains how TBD's frequent merges to main, decoupled from release by feature flags, enable velocity. Then, contrast this with GitFlow's complexity.

The Strangler Fig Pattern for Legacy System Refactoring
Agile & Scrum2 min read

The Strangler Fig Pattern for Legacy System Refactoring

Tests your understanding of gradual legacy modernization and risk management. A great answer defines the pattern (new system grows over old), outlines the process (identify seams, build new, redirect traffic), and contrasts it with risky "big bang" rewrites.

Agile & Scrum2 min read

How would you introduce TDD to a team?

This tests your ability to influence a team and implement change pragmatically. A great answer outlines a gradual adoption: understand context, advocate with data, pilot on a new feature, then scale. A red flag is demanding a sudden, mandatory switch.

Describe the stages of a CI/CD pipeline for a containerized app
Agile & Scrum2 min read

Describe the stages of a CI/CD pipeline for a containerized app

This tests your practical knowledge of automated software delivery and risk management. A strong answer outlines CI, build, test, and deploy stages, including container-specific steps like image scanning and quality gates like automated testing and…

Agile & Scrum2 min read

Balancing Emergent Design with Long-Term Architectural Vision

This tests your grasp of scaling Agile. A strong answer defines emergent design and intentional architecture, explaining how an 'Architectural Runway' provides the technical foundation to balance them. A red flag is treating this as an 'either/or' choice.

Explain the Test Pyramid and its strategic use
Agile & Scrum2 min read

Explain the Test Pyramid and its strategic use

Tests your grasp of balanced testing trade-offs. A good answer defines the Unit, Service, and UI layers, explains the cost/speed rationale, and applies it to a feature strategy. A red flag is describing the pyramid but not its strategic 'why'.

Agile & Scrum2 min read

Describe the TDD Red-Green-Refactor cycle

This tests your grasp of TDD's core loop and its design implications. A good answer defines Red (failing test), Green (minimal code to pass), and Refactor (improve structure).