0
6.7kviews
Linear/Waterfall Model, Iterative Model, Prototyping Model and Spiral Model
1 Answer
0
148views

1. Linear or Waterfall Model:

Each phase is executed in sequence.It establishes a formal analysis and design methodology with highly structured development phases. The flow is unidirectional. Output of one phase serves as input to next phase. The features of the linear model is that the bugs in the current design are not corrected immediately and development proceeds with current design. The fixing of bug is done in support and deployment phase.

Advantages:

  1. Rich Documentation.

  2. Easy project management.

  3. Good control over cost and schedule.

Drawback:

  1. No design implementation is done. It works with assumption.

  2. Risk analysis is done only once.

  3. Working model is available at the end and bug fixes are done in support phase.


enter image description here


2. Iterative/Incremental or Fountain Model:

It follows the sequence, Analysis, Design,implementation. Evaluate the product and cycle back through and conduct analysis, design and repeat the cycle. It is a cascade of series of linear models. Here, requirements are known at the beginning and are divided into groups.


enter image description here


Advantages:

  1. Provides good development cycle feedback at each function/feature implementation and data can be used as reference for similar product development in future.

  2. More responsive to changing user needs.

  3. Provides a working model with minimum features at first cycle itself.

  4. Less manufacturing risk.

  5. Product development can be stopped at any stage.

Drawback:

  1. Extensive review requirement impact on operations due to new releases.

  2. Training for each new deployment.

3. Prototyping/Evolutionary Model:

Here, product is developed in multiple cycles. It produces refined prototype of the product at the end of each cycle. There is no commercial deployment at each cycle's end.

enter image description here

After requirement analysis, design for first prototype is made, development is started. On finishing the prototype, it is sent to customer for evaluation. The customer evaluates and gives feedback to developer in terms of shortcomings and improvements needed. The developer refines the product according to customer's expectation and repeats prototype development process. After multiple iterations product is delivered to the customers and launched.

Advantages:

  1. Easy to incorporate new requirements and technology changes.

  2. Fine tuning of final requirements is possible.

  3. Risk is under control.

Drawback:

  1. Deviation from expected cost and schedule due to requirement refinement.

  2. Increased project management.

  3. Minimal documentation on each prototype may create problems in backward prototype traceability.

  4. Increased configuration management activities.

4. Spiral Model:

Combines the elements of linear and prototyping models to give risk minimised EDLC model. It is developed by Barry Boehm in 1988. It starts with project definition and traverse through all phases. The activities are as follows:

  1. Determine objectives, alternatives, constraints.
  2. Evaluate alternatives, identify and resolve risks.
  3. Develop and test.
  4. Plan

It is suited for the development of complex products and situations where requirements and technology changes. Prototype model is evaluated by customer against various parameters. The final product is built based on final prototype on agreement with the client.

enter image description here

Please log in to add an answer.