Valid 200-901 Dumps shared by ExamDiscuss.com for Helping Passing 200-901 Exam! ExamDiscuss.com now offer the newest 200-901 exam dumps, the ExamDiscuss.com 200-901 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 200-901 dumps with Test Engine here:
What is a characteristic of lest-driven development?
Correct Answer: A
Test-Driven Development (TDD) is a software development approach where tests are written before writing the actual code. TDD enables and encourages code refactoring because it ensures that tests are already in place to verify the correctness of the code after changes. * Red-Green-Refactor Cycle: TDD follows a cycle of writing a test (Red), writing code to pass the test (Green), and then refactoring the code while ensuring the test still passes (Refactor). * Refactoring Support: Because tests are written first, developers can confidently refactor code knowing that any changes that break functionality will be caught by the existing tests. References: * Test-Driven Development: TDD Overview