Git is an example of what kind of tool?
AnswerVersion control system
Git tracks changes to files over time so developers can review history and collaborate.
Coding · Facts & stats
7 fact-checked facts about software development, each with the reason behind it. 5 more are in today's round and join this page after it closes.
AnswerVersion control system
Git tracks changes to files over time so developers can review history and collaborate.
AnswerApplication Programming Interface
An API is a defined way for one piece of software to request data or actions from another.
AnswerTest-Driven Development
Test-driven development is a practice in which automated tests are written to guide how the code is built.
AnswerRestructuring code without changing its behavior
Refactoring improves the internal structure and readability of code while keeping its external behavior the same.
AnswerDon't Repeat Yourself
DRY encourages putting each piece of logic in one place rather than copying it around.
Answer2001
Seventeen software developers wrote the Agile Manifesto at a meeting in Snowmass, Utah, in February 2001.
AnswerRed, green, refactor
Red means a failing test, green means making it pass, and refactor means cleaning up the code.