In Software world, every project/product release has one version number associated with it to identify on which version of code base it has. Usually every project/product release has its version as follows. (Major).(Minor).(Maintenance/Enhancements).(Build Number) Major - If the release has Major changes in Project/Product then we need to increment this number by 1 Minor - If the release has Minor changes in Project/Product then we need to increment this number by 1 Maintenance - If the release has Bug fixes or Small Enhancements then we need to increase this number by 1. Build Number : Every time when we deliver build (latest code) to the QA to test, then we need to increase by 1. Partial Builds: If only some of the modules in the project modified and if those modules only delivered to QA means, it is called as partial builds. And this will be noted as build number along with alphabets. E.G of Build Numbers. Current Version of Project is 4.0.0.0 (4 Major ...