A Burn Down Chart is a graphical representation of work completed vs. remaining work over time. Explanation: Example Burn Down Chart:
A Sprint is a fixed-length development cycle (usually 1-4 weeks) in Scrum methodology. Explanation:
A Product Backlog is a prioritized list of features, enhancements, and fixes to be implemented in a product. Explanation: Example: A to-do list for a task management app might include:
A Scrum Master is responsible for ensuring that the Scrum framework is followed in Agile development. Explanation:
Code refactoring is the process of restructuring existing code without changing its behavior. Explanation: Example: Before Refactoring (Bad Code) pythondef calculate_price(price, tax): return price + (price * 0.15) # Hardcoded tax After Refactoring (Good Code) pythondef calculate_price(price, tax_rate=0.15): return price + (price * tax_rate)