Software Development Life Cycle (SDLC): Explained

A3h1nt
2 min readJan 28, 2021

Software development life cycle is a framework that defines the different steps involved in the development of a software, it tells us about the different things that comes into play for building, deploying and maintaining a software.

SDLC is divided into five Phase

  • Requirement Gathering and Analysis: In this phase, all the relevant information is gathered from the customer to make the software as per their expectations, any ambiguity must be resolved in this phase, once requirements are gathered, an SRS (Software requirement specification) document is created.
  • Design: In this phase, the SRS document is given as an input to create the system and software design.
  • Development or Implementation and Coding: This is the stage where the design is translated into source code, all the modules of the software are built in this phase only.
  • Testing: Once the developer is done with coding, thorough testing is done of all the modules, and if any issue is found, it gets fixed by the developer. This basically means the software is sent back to the implementation and coding phase to get the issues fixed.
  • Deployment: If no defects are found, the software is deployed in the production environment, a replica of this production environment is created, where the customer and the developer sit together to test the software if the software meets the client’s expectation then good, otherwise it is sent back to fix any issue or make any improvement.
  • Maintainance: Once the software is deployed, the next step is to maintain it, which basically means if any issue arises, it is taken care of, by the developer.

--

--