Can you describe a practical example where you used TDD?
(Example) I wrote a simple calculator class using TDD: First, I wrote a test for addition, saw
it fail, implemented Add() method, passed the test, then refactored. Repeated for
subtraction, multiplication, etc., ensuring robust code with full test coverage.