Raymond Lewallen

Sponsors

The Lounge

Wicked Cool Jobs

Advertisement

Images in this post missing? We recently lost them in a site migration. We're working to restore these as you read this. Should you need an image in an emergency, please contact us at imagehelp@codebetter.com
Software Development Life Cycle Models

I was asked to put together this high-level and traditional software life cycle information as a favor for a friend of a friend, so I thought I might as well share it with everybody.

The General Model

Software life cycle models describe phases of the software cycle and the order in which those phases are executed.  There are tons of models, and many companies adopt their own, but all have very similar patterns.  The general, basic model is shown below:

General Life Cycle ModelGeneralModel

Each phase produces deliverables required by the next phase in the life cycle.  Requirements are translated into design.  Code is produced during implementation that is driven by the design.  Testing verifies the deliverable of the implementation phase against requirements.

Requirements

Business requirements are gathered in this phase.  This phase is the main focus of the project managers and stake holders.  Meetings with managers, stake holders and users are held in order to determine the requirements.  Who is going to use the system?  How will they use the system?  What data should be input into the system?  What data should be output by the system?  These are general questions that get answered during a requirements gathering phase.  This produces a nice big list of functionality that the system should provide, which describes functions the system should perform, business logic that processes data, what data is stored and used by the system, and how the user interface should work.  The overall result is the system as a whole and how it performs, not how it is actually going to do it.

Design

The software system design is produced from the results of the requirements phase.  Architects have the ball in their court during this phase and this is the phase in which their focus lies.  This is where the details on how the system will work is produced.  Architecture, including hardware and software, communication, software design (UML is produced here) are all part of the deliverables of a design phase.

Implementation

Code is produced from the deliverables of the design phase during implementation, and this is the longest phase of the software development life cycle.  For a developer, this is the main focus of the life cycle because this is where the code is produced.  Implementation my overlap with both the design and testing phases.  Many tools exists (CASE tools) to actually automate the production of code using information gathered and produced during the design phase.

Testing

During testing, the implementation is tested against the requirements to make sure that the product is actually solving the needs addressed and gathered during the requirements phase.  Unit tests and system/acceptance tests are done during this phase.  Unit tests act on a specific component of the system, while system tests act on the system as a whole.

So in a nutshell, that is a very basic overview of the general software development life cycle model.  Now lets delve into some of the traditional and widely used variations.

 

Waterfall Model

This is the most common and classic of life cycle models, also referred to as a linear-sequential life cycle model.  It is very simple to understand and use.  In a waterfall model, each phase must be completed in its entirety before the next phase can begin.  At the end of each phase, a review takes place to determine if the project is on the right path and whether or not to continue or discard the project.  Unlike what I mentioned in the general model, phases do not overlap in a waterfall model.

Waterfall Life Cycle ModelWaterFallModel

Advantages

  • Simple and easy to use.
  • Easy to manage due to the rigidity of the model – each phase has specific deliverables and a review process.
  • Phases are processed and completed one at a time.
  • Works well for smaller projects where requirements are very well understood.

Disadvantages

  • Adjusting scope during the life cycle can kill a project
  • No working software is produced until late during the life cycle.
  • High amounts of risk and uncertainty.
  • Poor model for complex and object-oriented projects.
  • Poor model for long and ongoing projects.
  • Poor model where requirements are at a moderate to high risk of changing.

 

V-Shaped Model

Just like the waterfall model, the V-Shaped life cycle is a sequential path of execution of processes.  Each phase must be completed before the next phase begins.  Testing is emphasized in this model more so than the waterfall model though.  The testing procedures are developed early in the life cycle before any coding is done, during each of the phases preceding implementation.

Requirements begin the life cycle model just like the waterfall model.  Before development is started, a system test plan is created.  The test plan focuses on meeting the functionality specified in the requirements gathering.

The high-level design phase focuses on system architecture and design.  An integration test plan is created in this phase as well in order to test the pieces of the software systems ability to work together.

The low-level design phase is where the actual software components are designed, and unit tests are created in this phase as well.

The implementation phase is, again, where all coding takes place.  Once coding is complete, the path of execution continues up the right side of the V where the test plans developed earlier are now put to use.

V-Shaped Life Cycle ModelVShapedModel

Advantages

  • Simple and easy to use.
  • Each phase has specific deliverables.
  • Higher chance of success over the waterfall model due to the development of test plans early on during the life cycle.
  • Works well for small projects where requirements are easily understood.

Disadvantages

  • Very rigid, like the waterfall model.
  • Little flexibility and adjusting scope is difficult and expensive.
  • Software is developed during the implementation phase, so no early prototypes of the software are produced.
  • Model doesn’t provide a clear path for problems found during testing phases.

 

Incremental Model

The incremental model is an intuitive approach to the waterfall model.  Multiple development cycles take place here, making the life cycle a “multi-waterfall” cycle.  Cycles are divided up into smaller, more easily managed iterations.  Each iteration passes through the requirements, design, implementation and testing phases.

A working version of software is produced during the first iteration, so you have working software early on during the software life cycle.  Subsequent iterations build on the initial software produced during the first iteration.

Incremental Life Cycle ModelSpiralModel

Advantages

  • Generates working software quickly and early during the software life cycle.
  • More flexible – less costly to change scope and requirements.
  • Easier to test and debug during a smaller iteration.
  • Easier to manage risk because risky pieces are identified and handled during its iteration.
  • Each iteration is an easily managed milestone.

Disadvantages

  • Each phase of an iteration is rigid and do not overlap each other.
  • Problems may arise pertaining to system architecture because not all requirements are gathered up front for the entire software life cycle.

 

Spiral Model

The spiral model is similar to the incremental model, with more emphases placed on risk analysis.  The spiral model has four phases: Planning, Risk Analysis, Engineering and Evaluation.  A software project repeatedly passes through these phases in iterations (called Spirals in this model).  The baseline spiral, starting in the planning phase, requirements are gathered and risk is assessed.  Each subsequent spirals builds on the baseline spiral.

Requirements are gathered during the planning phase.  In the risk analysis phase, a process is undertaken to identify risk and alternate solutions.  A prototype is produced at the end of the risk analysis phase.

Software is produced in the engineering phase, along with testing at the end of the phase.  The evaluation phase allows the customer to evaluate the output of the project to date before the project continues to the next spiral.

In the spiral model, the angular component represents progress, and the radius of the spiral represents cost.

Spiral Life Cycle ModelSpiralModel

Advantages

  • High amount of risk analysis
  • Good for large and mission-critical projects.
  • Software is produced early in the software life cycle.

Disadvantages

  • Can be a costly model to use.
  • Risk analysis requires highly specific expertise.
  • Project’s success is highly dependent on the risk analysis phase.
  • Doesn’t work well for smaller projects.

 

And that’s it.  If you have any input, especially your views on advantages and disadvantages of any particular model, feel free to leave them in the comments and I can add them to my copy.


Posted Wed, Jul 13 2005 8:13 AM by Raymond Lewallen

[Advertisement]

Comments

Sahil Malik wrote re: Software Development Life Cycle Models
on Wed, Jul 13 2005 7:28 AM
Hey Ray,

This is a good post, but for some reason it isn't appearing in aggregators.

Secondly, isn't extreme programming very similar to the spiral model? Just a few new bells whistles and buzz words !!!

- SM
Jeremy wrote re: Software Development Life Cycle Models
on Wed, Jul 13 2005 8:32 AM
XP is iterative *and* incremental (like RUP and essentially all modern processes). Barry Boehm's old spiral model is only iterative. It's actually a significant difference.
shebert wrote re: Software Development Life Cycle Models
on Wed, Jul 13 2005 9:15 AM
I guess I've never seen the V-shaped testing model as an SDLC - but your picture changes the testing model blocks and is interesting. I wonder if High-Level Design should be mapped to Acceptance Testing, Low-Level (Use Case?) to Integration Testing and then break out the Implementation into 3 blocks (Unit Test Design) -> (Implementation) -> (Unit Test Execution). That's a fairly decent picture to how TDD fits in the picture. :)

You might want to look at the models called out in Rapid Development: these include Code/Fix, waterfall, staged delivery, design to schedule, evolutionary prototyping, evolutionary delivery, modified waterfall (sashimi), spiral, RUP and Agile. Agile wasn't listed in the book, but I blogged about Construx' discussion of it (Construx is owned by McConnell): http://codebetter.com/blogs/steve.hebert/archive/2005/07/13/129119.aspx

-Steve
Darrell Norton wrote re: Software Development Life Cycle Models
on Wed, Jul 13 2005 11:31 AM
For the incremental picture, you might want to indicate there are multiple incremental flows.

Great overview!
David Boschmans' Weblog wrote Software Development Lifecycle Models
on Thu, Jul 14 2005 5:56 AM
Raymond Lewallen provides a great overview of 4 software development lifecycle models:

the Waterfall...
Rob Caron's Blog wrote New Team System Stuff - 2005-07-14
on Thu, Jul 14 2005 6:36 PM
Visual Studio Team System

There’s a new Team System community site – TeamSystemRocks.com! ⊕
Well,...
Tech Guru wrote Software Development Life Cycle Models
on Thu, Jul 14 2005 7:44 PM
Ganesh wrote re: Software Development Life Cycle Models
on Tue, Aug 23 2005 12:43 PM
Hi Ray,
This is really a cool and an informative piece of information on sdlc models.
Mithun wrote re: Software Development Life Cycle Models
on Mon, Sep 5 2005 3:01 AM
This is a very Good Article That would help to understand Different SDLC Models.
Santosh Kale wrote re: Software Development Life Cycle Models
on Fri, Sep 9 2005 5:41 AM
Hi,

This is a kind of article i was looking for, thanks for sharing it with all. This would help in understanding the different SDLC models.

Thanks & Regards,
Santosh Kale
Irwin wrote re: Software Development Life Cycle Models
on Sun, Sep 11 2005 9:34 AM
I loved this article, it was a great source for my Computer Science cource. Thanks so much!

PS.
Ofcource I sited my resources. :)
Kunal Aggarwal wrote When to used which Software Development Life Cycle Models
on Thu, Sep 15 2005 4:32 AM
Hello firends,
I am facing major problem in deciding SDLC for my project.
It is already in ASp I want to Convert it in ASP.NET and C#.
Please send me your choice and supported reasons for that.

With regards
Kunal Aggarwal
kunala@vmoksha.com
Louise wrote re: Software Development Life Cycle Models
on Fri, Sep 16 2005 4:42 AM
whats the difference between a spiral model and a waterfall model
Adam wrote re: Software Development Life Cycle Models
on Mon, Sep 19 2005 8:07 AM
Thanks for sharing this with everyone, it really helped me explain system life cycles on my Computing course at uni.
Thanks

p.s. would it be possible for me to use those diagrams?

thanks

Adam

adamh00@hotmail.com
Akshatha wrote re: Software Development Life Cycle Models
on Wed, Sep 21 2005 4:34 AM
This was very informative. In simple words, you explained a lot
Eddy wrote re: Software Development Life Cycle Models
on Fri, Dec 9 2005 12:13 PM
Who wrote this artical? if possible to use the pictures, i would like to give credit to the author within my biblography.
Raymond Lewallen wrote re: Software Development Life Cycle Models
on Fri, Dec 9 2005 12:18 PM
Eddy, I wrote the article and made the nifty little pics. Credit Raymond Lewallen in your bibliography.
King wrote re: Software Development Life Cycle Models
on Tue, Dec 13 2005 9:13 AM
thanks very much for ur post
Nigel wrote re: Software Development Life Cycle Models
on Tue, Dec 20 2005 8:12 AM
Many thanks for this excellent overview! Very helpful for an Assignment i have to write. Thanks a lot for the post.
Gurpratap wrote re: Software Development Life Cycle Models
on Thu, Dec 29 2005 12:38 PM
this article helps me to crack my interview and i am very thankful to the person who has written such a easy to understand article.
Raymond Lewallen wrote re: Software Development Life Cycle Models
on Thu, Dec 29 2005 1:24 PM
Gurp,

Glad it turned out to be so useful for you! Congrats on your interview and good luck with your job.
Gonzalo Espert, Argentina wrote re: Software Development Life Cycle Models
on Thu, Feb 2 2006 11:31 AM
I would like to note that according to McConnell's "Rapid development" book and also "Quality Software Project Manajement" from Software Quality Institute Series, the incremental development life cycle model does not imply that each iteration passes through the requirements, design, implementation and testing phases. They both state that each iteration passes through detailed design, implementation and testing phases. Thus requirements and high level design is done once at the begining.

thanks.
Raymond Lewallen wrote re: Software Development Life Cycle Models
on Thu, Feb 2 2006 10:16 PM
Gonzalo,

All SDLC's have variations to them, and you have stated a variation that McConnell's opinion is that is a better incremental model. I disagree with his assertion, as you cannot design completely upfront in and in one single phase because its a losing battle. Those requirements and design are going to change, so attempting to do it all at once is a futile process.
Gonzalo Espert, Argentina wrote re: Software Development Life Cycle Models
on Fri, Feb 3 2006 9:01 AM
Thanks Ray for your clarification.

In that case, which would be the diference between the requirement phase of the first iteration and the following ones? If you are only refining the requirements wouldn't you be re-working iteration after iteration? On the other hand, how do you carry the planing phase if you don't know what would come up in the requirement phase of each iteration?

Note that I'm not saying that your approach is incorrect. I'm trying to understand your incremental model more thoroughly.

Kind regards.
Raymond Lewallen wrote re: Software Development Life Cycle Models
on Fri, Feb 3 2006 11:29 PM
Gonzalo,

The XP methodology of software design explains it very well because its an agile model that adapts to change easily. I would start here:

http://www.extremeprogramming.org/rules/iterationplanning.html

to answer your specific questions, and then read through more of the information that you find on the site. That will give you a better view of the approach I support concerning the iterative + incremental SDLC.
Development wrote Software Development Life Cycle Models
on Sat, Mar 4 2006 11:32 PM
Prakash wrote re: Software Development Life Cycle Models
on Sun, Mar 19 2006 9:48 AM
Good one. This is what looking for. Explained in simple text with good pictorial representation. Thanks.
swetha wrote re: Software Development Life Cycle Models
on Wed, Mar 29 2006 4:09 AM
Good one. This is what looking for. Explained in simple text with good pictorial representation. Thanks.
aish wrote re: Software Development Life Cycle Models
on Sat, Apr 8 2006 3:33 AM
i get all knowledge abt software development life cycle that iwant thanks for your knowledge
muhdiin wrote re: Software Development Life Cycle Models
on Sun, Apr 9 2006 4:46 AM
compaire between prototype model and linear sequential model
Cuckoo wrote re: Software Development Life Cycle Models
on Wed, Apr 12 2006 3:58 AM
Raymond, very well explained in a concised manner !! Looking forward to some more comparisons.
Madhavi.s wrote re: Software Development Life Cycle Models
on Fri, Apr 21 2006 11:44 AM
good information regarding the models.can u explain which would be more useful for small projects and big projects.
Geo wrote re: Software Development Life Cycle Models
on Fri, Apr 28 2006 1:47 AM
Good explanation on models. all people have contributed well to this topic.

Could you tell which model suits a product development project in which the resource skill set is low on ; a new tecnology area ; and technical aspects of development is unaware.
kiruba wrote re: Software Development Life Cycle Models
on Sun, Apr 30 2006 2:09 PM
good one
amrita wrote re: Software Development Life Cycle Models
on Thu, May 4 2006 8:43 AM
hey this is good one but what abt new type model scrum used by microsoft mention nothing abt it
Raymond Lewallen wrote re: Software Development Life Cycle Models
on Thu, May 4 2006 9:02 AM
SCRUM is not a super common model, although its certainly going to be in the near future, like many agile models.  SCRUM is an incremental/iterative model combination.  These types of models are making serious headway into mainstream development and are used by more and more teams everyday.
kiran wrote re: Software Development Life Cycle Models
on Fri, May 5 2006 5:50 AM
very good stuff. wants v-model in details. thaks for stuff
Adi wrote re: Software Development Life Cycle Models
on Fri, May 5 2006 12:11 PM
Nice Summary!... Add something about RUP!

adi
ioajgfw wrote re: Software Development Life Cycle Models
on Sat, May 6 2006 7:26 AM
umechemsha v shped model haipo vile kabisaaa!
navaneeth wrote re: Software Development Life Cycle Models
on Tue, May 9 2006 3:11 AM
it good
Beverly wrote re: Software Development Life Cycle Models
on Thu, May 11 2006 6:32 AM
This article help me a great deal in my project on sdlc models and am just saying thankyou.
Sunil wrote re: Software Development Life Cycle Models
on Thu, May 11 2006 11:59 PM
Good one!
surekha wrote re: Software Development Life Cycle Models
on Tue, May 16 2006 1:37 AM
Good one,I'am preparing for my interview and this is what i was looking for. Very simple but explains every thing. Thank you.
o wrote re: Software Development Life Cycle Models
on Sun, May 21 2006 6:54 AM
kkkkkkkkk
Abdi somali wrote re: Software Development Life Cycle Models
on Sun, May 21 2006 7:00 AM
thanks for doing my coursework for me maan this is what i needed
Gopi wrote re: Software Development Life Cycle Models
on Mon, May 22 2006 9:35 AM
Nice and very good Jurney about SDLC
Learner wrote re: Software Development Life Cycle Models
on Tue, May 23 2006 1:11 AM
I would like more in detail about the differences between high-level design and low-level design. Where can I find them?

Thanks in advance
Kunal wrote re: Software Development Life Cycle Models
on Tue, May 23 2006 9:56 AM
Brilliant description
Kishore wrote re: Software Development Life Cycle Models
on Wed, May 24 2006 9:20 AM
Hi,
 thanks for ur brief introduction abt SDLC Models.
But i love to see more about V and waterfall models and it's differences and most commonly used model now a days in industries?.
It will be better and very usefull for begineers.

thanking u

kishore kumar
Gerard White wrote re: Software Development Life Cycle Models
on Wed, May 24 2006 5:45 PM
I'm working on a project where we're delivering iterations of the product in phases over four years (one per year).
For our Software Development Plan (SDP), I'm trying to explain how to ensure overlapping test and design phases (test from previous - and design of next phase) don't lose any changes.
Anyone know of a good document I can check out and/or reference?

Thanks!

- Gerry
Kiran wrote re: Software Development Life Cycle Models
on Thu, May 25 2006 3:55 AM
hi Ray
Really its helping alot for who want to know SDLC life cycles.
But wats the difference b/w Extreme programming and other models????
Thanks in advance
zorina - trinidad wrote re: Software Development Life Cycle Models
on Thu, May 25 2006 11:56 AM
hi just wanted to say that I had an assignment that required this information, and your explanation was so simple to understand, this was research we had to do, and I was able to write my assingment better because of you, thanks!!!
ps.  yes I didn't plagerise, I sourced the info
soul wrote re: Software Development Life Cycle Models
on Tue, May 30 2006 3:01 AM
great work man, keep it up.
Laszlo wrote re: Software Development Life Cycle Models
on Tue, Jun 6 2006 9:02 PM
Hello all,
I can say Scrum is definitely making headway with a number of Fortune 500 / Global 1,000 companies embracing the values of the www.AgileAlliance.org and the www.scrumalliance.org  

I dug up Kane Mar’s article on staggered iterative waterfall, part1 and part 2 here; I think it is relevant to the discussion:
http://danube.com/blog/kanemar/the_staggered_iterative_waterfall_anti_pattern_part_1.html
and
http://danube.com/blog/kanemar/the_staggered_iterative_waterfall_anti_pattern_part_2.html

Best of luck on your projects.
sathish wrote re: Software Development Life Cycle Models
on Wed, Jun 7 2006 7:54 AM
gud one for beginners !!!!!
Rizwana wrote re: Software Development Life Cycle Models
on Sun, Jun 25 2006 5:07 AM
hey...this comparision really helped me to understand wot i shud choose for my project...also include rapid prototype model,exteme prgrammig,code n fix and synchronize-stabalize models....thank ya
Rizwana wrote re: Software Development Life Cycle Models
on Sun, Jun 25 2006 5:08 AM
hey...this comparision really helped me to understand wot i shud choose for my project...also include rapid prototype model,exteme prgrammig,code n fix and synchronize-stabalize models....thank ya
rizwana wrote re: Software Development Life Cycle Models
on Sun, Jun 25 2006 5:09 AM
hey...this comparision really helped me to understand wot i shud choose for my project...also include rapid prototype model,exteme prgrammig,code n fix and synchronize-stabalize models....thank ya
rizwana wrote re: Software Development Life Cycle Models
on Sun, Jun 25 2006 5:10 AM
hey...this comparision really helped me to understand wot i shud choose for my project...also include rapid prototype model,exteme prgrammig,code n fix and synchronize-stabalize models....thank ya
Diya Trivedi wrote re: Software Development Life Cycle Models
on Tue, Jun 27 2006 3:05 AM
Hi, In lot of interviews iam asked if iam aware of X model or Y model along with V model. Is there something like X model and Y model for SCDL?
Poonam wrote re: Software Development Life Cycle Models
on Fri, Jun 30 2006 6:23 AM
good article. But i hav never seen a v-shaped life cyle model. where can i get details of this model?
angela wrote re: Software Development Life Cycle Models
on Fri, Jun 30 2006 6:34 AM
what does MVP stands fo in ur name. is it Master of Various Platforms :)
Pratichi wrote re: Software Development Life Cycle Models
on Mon, Jul 3 2006 1:18 PM
this is eally very nice and helped me in doing the analysis of my project.
Raymond Lewallen wrote re: Software Development Life Cycle Models
on Fri, Jul 7 2006 5:51 PM
Angela, that would be Microsoft "Most Valuable Profressional".
Raymond Lewallen wrote re: Software Development Life Cycle Models
on Fri, Jul 7 2006 5:52 PM
Poonam,

Try googling for "v-shaped life cycle", or some variation thereof.
pavithra H A wrote re: Software Development Life Cycle Models
on Tue, Jul 11 2006 2:23 AM
GOOD ONE!!
its really helpfull
Nguyen Thi Linh wrote re: Software Development Life Cycle Models
on Mon, Jul 17 2006 3:59 AM
How many life cycle models are applied now a day? The models waterfall and spiral are nolonger used, are they?

I'm a new project manager so I need alot of project management information. I would like you reply my answer to my email box thnhatlinh@yahoo.com
Daffodil wrote re: Software Development Life Cycle Models
on Thu, Jul 20 2006 3:53 PM
Thanks so much for such a comprehensive explanation of the SDLC models - Nice overview.  
Venkat Raja wrote re: Software Development Life Cycle Models
on Sat, Jul 22 2006 10:06 AM
Very nice article, you have the gift of putting it in simple terms. Thank you for sharing it.
A few questions .........
Could you please add examples of risks in the softwre context ?
Also can you give examples of requirements changing midstream?
How come they are so?
Jaya wrote re: Software Development Life Cycle Models
on Wed, Jul 26 2006 2:30 AM
Very Nice!
Jaya wrote re: Software Development Life Cycle Models
on Wed, Jul 26 2006 2:32 AM
It's very helpful to me.Thanks a lot
scywaulcher wrote re: Software Development Life Cycle Models
on Thu, Jul 27 2006 3:19 AM
the way you explain concepts is good , you should consider writing more books and articles :) .
Vijaya Sreenivas wrote re: Software Development Life Cycle Models
on Fri, Jul 28 2006 2:35 AM
Exactly this entire page gives us clear knowledge on SDLC model. If u need basic knowledge go through it.....
Vijaya Sreenivas wrote re: Software Development Life Cycle Models
on Fri, Jul 28 2006 2:36 AM
Freshers go through it & enjoy the concepts....
Simply , it is wonderful wrote re: Software Development Life Cycle Models
on Mon, Jul 31 2006 6:11 AM
Thanks a lot author.
Lokanath Reddy .D wrote re: Software Development Life Cycle Models
on Mon, Jul 31 2006 6:11 AM
Simply , it is wonderful
Minal wrote re: Software Development Life Cycle Models
on Tue, Aug 1 2006 4:54 AM
Hi

This is a great article.

I just have one doubt. I was thinking that wouldn't Spiral model alos hav the same problem as the Incremental model i.e. "Problems may arise pertaining to system architecture because not all requirements are gathered up front for the entire software life cycle"

In the spiral model, how would you make sure that you have rightly estimated the scope of the project in teh first phase of planning?

Minal
Minal wrote re: Software Development Life Cycle Models
on Tue, Aug 1 2006 4:56 AM
Hello

One more question, where does the rational unified process fall in these. Isnt that another type of Software development methodology?

Minal
Diyi Srinivas wrote re: Software Development Life Cycle Models
on Tue, Aug 1 2006 6:21 AM
Advantages&Disadvantages reg models are not clear i suppose.
I feel that General Life Cycle model should be updated.
Thanks for nice postings.Thank u once again.
                                                        Srinivas Diyi
Sanjeev wrote re: Software Development Life Cycle Models
on Wed, Aug 2 2006 3:05 AM
Information is good. But I think this is not enough information. Very less ponints are mentioned.
DCP wrote re: Software Development Life Cycle Models
on Wed, Aug 2 2006 7:49 AM
What hav been explained in wATERFALL Model is not seems to be correct, can u plz check b'coz the requirement shpul be mapped with UAT and rest of them in the same way, on seeing this many would be miss lead so change as soon as possible.

Dilip wrote re: Software Development Life Cycle Models
on Thu, Aug 3 2006 11:41 PM
Data Provided Is Good,Especially The Pictorial Representation Is Impressive.Thank You.
Srinivas wrote re: Software Development Life Cycle Models
on Fri, Aug 4 2006 1:43 AM
Hi. Had there been info about when to use what would have been  very much appriciatable . This info is great and useful for most of the S/W engg
Hoch Srinivas wrote re: Software Development Life Cycle Models
on Fri, Aug 4 2006 7:35 AM
The Information is Helpful Especially For Basic Learners.Thank You.
Richmond Enriquez wrote re: Software Development Life Cycle Models
on Fri, Aug 4 2006 10:29 PM
Hi, This is what I'm looking for. You're article is very much informative and it helped me in my software engineering course. Thanks a lot.
Priya wrote re: Software Development Life Cycle Models
on Wed, Aug 9 2006 9:44 AM
Thank you for sharing this information. I could not get such an information anywhere else.
Prudent wrote re: Software Development Life Cycle Models
on Thu, Aug 10 2006 5:39 AM
Documents seems to be good , our suggestion is to go little bit depth
Prudent wrote re: Software Development Life Cycle Models
on Thu, Aug 10 2006 5:41 AM
Documents seems to be good , our suggestion is to go little bit depth
sridhar wrote re: Software Development Life Cycle Models
on Thu, Aug 10 2006 12:58 PM
Excellent material...
suryakiranmurthy wrote re: Software Development Life Cycle Models
on Wed, Aug 16 2006 4:10 AM
can u pls discuss about the vv model ?
Prem wrote re: Software Development Life Cycle Models
on Wed, Aug 16 2006 6:15 AM
Great article and worth having Five stars. Lot of valuable info presented in succint paras.  great.
sai wrote re: Software Development Life Cycle Models
on Thu, Aug 17 2006 1:57 AM
Very Good
Markov wrote re: Software Development Life Cycle Models
on Thu, Aug 17 2006 3:21 AM
Very good article about SDLC.
Francis wrote re: Software Development Life Cycle Models
on Thu, Aug 17 2006 3:53 AM
This is a good material. But, I am not familiar with the V-shaped Life Cycle Model.
Ashok wrote re: Software Development Life Cycle Models
on Mon, Aug 21 2006 8:05 PM
This site is too good
kumar sundaram wrote re: Software Development Life Cycle Models
on Tue, Aug 22 2006 5:32 AM
it is very simply and easy to understand .
Ramesh Reddy wrote re: Software Development Life Cycle Models
on Tue, Aug 22 2006 7:45 AM
Nice work. Very much helpful for me. Thank you
Jeff wrote re: Software Development Life Cycle Models
on Fri, Aug 25 2006 1:39 PM

Can anyone help me.. BTW, great article... uhmm what model should i use for this kind of project.. actually its for my thesis... an online expert system that uses schema matching for data warehousing... please help me.. thanks in advance...

Abhijeet wrote re: Software Development Life Cycle Models
on Mon, Aug 28 2006 2:35 AM

That was really a nice topic, very helpful..

Sandesh wrote re: Software Development Life Cycle Models
on Mon, Aug 28 2006 2:42 AM

Nice Work and very helpful for me in getting differences in all the different models ..

Lloyd wrote re: Software Development Life Cycle Models
on Thu, Aug 31 2006 5:36 AM

to Mr. Lewallen, thank you very much for posting the SDLC, ill be using it for my software methodolgy

M.Dayananthan wrote re: Software Development Life Cycle Models
on Fri, Sep 1 2006 12:20 AM

Nice article to refresh abt SDLC....Thanks...

Zaki wrote re: Software Development Life Cycle Models
on Fri, Sep 1 2006 2:50 AM

I don't see the UAT in the V-model.Can someone throw some light on this?

jams wrote re: Software Development Life Cycle Models
on Sat, Sep 2 2006 4:53 AM

can some one let me know what is Rapid Application Development(RAD)

Ka_phin@hotmail.com

Harish wrote re: Software Development Life Cycle Models
on Mon, Sep 4 2006 5:29 AM

Great Article

Heba wrote re: Software Development Life Cycle Models
on Tue, Sep 5 2006 6:11 PM

Please what about RAD???? pros and cons

Deepak Anand wrote re: Software Development Life Cycle Models
on Wed, Sep 6 2006 12:58 AM

I find this article better than any SDLC search results till date. Definetly worth your time.

Panchaxari wrote re: Software Development Life Cycle Models
on Wed, Sep 6 2006 2:09 AM

Very informative. Thanks

kunal wrote re: Software Development Life Cycle Models
on Sat, Sep 9 2006 1:09 AM

its good

contains good info

i think they have to give more details

Odukudu Bernard wrote re: Software Development Life Cycle Models
on Sun, Sep 10 2006 7:18 AM

This is a great clarification

vasudha wrote re: Software Development Life Cycle Models
on Wed, Sep 13 2006 6:29 AM

this is a great article .this realy helped me a lot to clear technical round of my interview. can you please share some information on software testing techniques

Grim reaper wrote re: Software Development Life Cycle Models
on Thu, Sep 14 2006 5:29 AM

The concept of life is very uncertain, you should rethink and go to bed.  Maybe some chocolate or you could just leave some pizza for me.  I know you love me really.

Nilima wrote re: Software Development Life Cycle Models
on Wed, Sep 20 2006 6:06 AM

Great article,

Very helpful for me to work on my projects.

Ryan Xj Pinoy wrote re: Software Development Life Cycle Models
on Wed, Sep 20 2006 6:51 AM

thanks to the author. :-)

by the way guys, do u have a Work breakdown structure for these

software life cycle model? i mean, the one that is based from the

ISO12207 standard?

ramana wrote re: Software Development Life Cycle Models
on Sat, Sep 23 2006 1:34 AM

a very good  article ...i need complete information regarding spiral model

Tapan Bhardwaj wrote re: Software Development Life Cycle Models
on Thu, Sep 28 2006 5:43 AM

it very good to better know abut SDLC

anurag srivastava wrote re: Software Development Life Cycle Models
on Sat, Oct 7 2006 11:17 PM

fodr sdlc

anurag srivastava wrote re: Software Development Life Cycle Models
on Sat, Oct 7 2006 11:18 PM

for sdlc

Bepenfriends wrote re: Software Development Life Cycle Models
on Tue, Oct 10 2006 11:58 PM

Hi Ray,

A very good post. I know only waterfall model and worked on that. Now i know a little in other models too.

Thanks

Albert

http://blogs.bepenfriends.com/bepenfriends

Shehan Niyas wrote re: Software Development Life Cycle Models
on Wed, Oct 11 2006 8:56 AM

Wow u've got exactly wat i need.

Common Life cycle models n their advantages n disadvantages.

A very good site. got wat i needed,

Keep up da good wrk.

Rudra wrote re: Software Development Life Cycle Models
on Wed, Oct 11 2006 2:00 PM

This article is helping me a lot.

Thank You and good work.

Saurabh Kashyap wrote re: Software Development Life Cycle Models
on Thu, Oct 12 2006 1:42 AM

Really this artical is very helpful for beginners.I was looking for such artical.Thnaks a lot.

Saurabh Kashyap wrote re: Software Development Life Cycle Models
on Thu, Oct 12 2006 1:42 AM

Really this article is very helpful for beginners.I was looking for such artical.Thnaks a lot.

Saurabh Kashyap wrote re: Software Development Life Cycle Models
on Thu, Oct 12 2006 1:42 AM

Really this article is very helpful for beginners.I was looking for such article.Thnaks a lot.

lone wrote re: Software Development Life Cycle Models
on Fri, Oct 13 2006 4:06 AM

Thank you very much,it's useful to me.Can you describe the prototyping model?And I donnot understand the difference between the 1st model in incremental model and the prototyping model.

Vincent wrote re: Software Development Life Cycle Models
on Sat, Oct 14 2006 12:39 PM

Thank you very much! it's useful to me, but do you know novel cycle life? I wish to know any new cyle life used in the present time.

GovindaRao Chalamala wrote re: Software Development Life Cycle Models
on Mon, Oct 16 2006 8:06 AM

This is very Nice Article, Thank you very Much.    i want to know about Iterative Model.

what are the advantages and Disadvantages.

Roushan wrote re: Software Development Life Cycle Models
on Tue, Oct 17 2006 6:01 AM

Thanks for the article. But from my point of view better to elobrate the topic

Lil Pimp wrote re: Software Development Life Cycle Models
on Tue, Oct 24 2006 9:01 AM

On your question about the v-shaped waterfall

please check this link im only on my HNC/HND of computing but i hope this link helps u along

http://home.att.net/~dwayne.phillips/CutterPapers/vshape/spiral.htm

Urukundappa wrote re: Software Development Life Cycle Models
on Mon, Oct 30 2006 10:44 AM

Excellent document on SDLC models. I am suggesting you to provide in detail information.

Steven Clough wrote re: Software Development Life Cycle Models
on Tue, Oct 31 2006 8:30 AM

I'm doing an assignment at college on System development lifecycles.

This information is very well pressended and is helping me with some of the task that I need to complete in the assignment.

Thank You

Rahul wrote re: Software Development Life Cycle Models
on Tue, Oct 31 2006 11:15 PM

Good One !

Balkrishna wrote re: Software Development Life Cycle Models
on Wed, Nov 1 2006 4:40 AM

Indeed good article throwing light on various SDLC models.

Almost got cleared the imbroglio between various modles.

Thanks a lot :)

Prashant wrote re: Software Development Life Cycle Models
on Fri, Nov 3 2006 5:45 AM

Good one ...fundamentals of the SDLC ,very useful for someone new to SDLC

uday wrote re: Software Development Life Cycle Models
on Fri, Nov 3 2006 11:30 AM

Its G8 work.

Thank you for providing these details

savitha n wrote re: Software Development Life Cycle Models
on Sat, Nov 4 2006 12:02 AM

A good one,but as to be in little more depth for better understanding.keep it up....

ysib wrote re: Software Development Life Cycle Models
on Tue, Nov 7 2006 11:51 AM

I am trying to decide what sdlc use in my project.

due to lack of expertise cia is strongly considering buy off the shelf software, which would be the best methodology to use if you are going to buy the software?

Nisha Hemamalini wrote re: Software Development Life Cycle Models
on Fri, Nov 10 2006 6:25 AM

Hi All,

       This article is very useful one.Every Software professionals should go through it.

Semon KH wrote re: Software Development Life Cycle Models
on Fri, Nov 10 2006 10:11 AM

please i want to ask about drawing a sketch of project life cycle

Semon KH wrote re: Software Development Life Cycle Models
on Fri, Nov 10 2006 10:14 AM

thank you for the help

Sunil wrote re: Software Development Life Cycle Models
on Sat, Nov 11 2006 10:37 PM

Thanks ,

I got solution for my query

prathyusha reddy aala wrote re: Software Development Life Cycle Models
on Sun, Nov 12 2006 12:52 PM

This is a real gud site for the ppl who want to know the basics of how a project is handled btw i doubt if V shaped model is an SDLC . Gud work :-)

Prajakta wrote re: Software Development Life Cycle Models
on Mon, Nov 13 2006 4:38 AM

Its a good article and i find sufficient to get knowledge about SDLC.but i would like to know more on prototyping model...

Steven Clough wrote re: Software Development Life Cycle Models
on Tue, Nov 14 2006 4:27 AM

Thanks for the information, because of this we was able to quickly write up some pointers for our presetasion of Project Management where we need to talk about the importance of the project management and the system lifecycle.

Mahendra wrote re: Software Development Life Cycle Models
on Tue, Nov 14 2006 4:55 AM

Very Good Article and thanks for keeping simplicity.

Ravi Shankar wrote re: Software Development Life Cycle Models
on Sat, Nov 18 2006 10:26 AM

Hi,

         This was a nice article related to development life cycles. All the models are described in this article to a great extent and the one who reads this article will feel that its definitely good.

very good and interesting........

Ravi Shankar wrote re: Software Development Life Cycle Models
on Sat, Nov 18 2006 10:26 AM

Hi,

         This was a nice article related to development life cycles. All the models are described in this article to a great extent and the one who reads this article will feel that its definitely good.

very good and interesting........

Sanjeev Kumar Malde wrote re: Software Development Life Cycle Models
on Sun, Nov 19 2006 10:29 PM

Good and informative article in short..

pradeep bhumani wrote re: Software Development Life Cycle Models
on Mon, Nov 20 2006 11:48 PM

hai

this presentation was very good and easily understand any one i hope people send these type of presentations

thanking u

bhumani pradeep

software testing engineer

PrabhuSV wrote re: Software Development Life Cycle Models
on Wed, Nov 22 2006 3:32 AM

Its nice to see these models at one place for reference and comparison for  process people. I wanted to see the Extreme Programming & Evolutionary Appraoch models.

-- -- vsubraya@google.com

ARUN REDDY wrote re: Software Development Life Cycle Models
on Fri, Nov 24 2006 8:54 AM

EXCELLENT AND VERY EASY TO UNDERSTAND, GOOD JOB

Naina wrote re: Software Development Life Cycle Models
on Mon, Dec 4 2006 10:52 PM

Excellent article. Smart and simple. Summarizes SDLC very well. Good Job.

Raj wrote re: Software Development Life Cycle Models
on Tue, Dec 5 2006 3:48 AM

Its a really gud article for figuring out differences between different models.

khushbu wrote re: Software Development Life Cycle Models
on Wed, Dec 6 2006 8:22 PM

hi, this is gud article but u wrote in a very high manner , please write in simple words nd  also in that way tht a student can read it . i m from india . but i found it very nice and optimistic.bye and thanks

swarna wrote re: Software Development Life Cycle Models
on Fri, Dec 8 2006 2:40 AM

Nice article, this article is more helpful to the people those who are involved in Testing track

kumar wrote re: Software Development Life Cycle Models
on Sat, Dec 9 2006 12:43 PM

Please mention the out come documents of each phase of the SDLC!

Olatoye wrote re: Software Development Life Cycle Models
on Mon, Dec 18 2006 6:08 PM

I must give credit to you rlewallen, for supplying such detailed information the various types of SDLC Models. I tell you what, I went for an interview Today for a Test Analyst role some where in London. The face to face interview and all that went well. I was happy. BUT there was the TEST (Combination of Multiple choices and theory). I tell you, if I had seen this blog earlier, I could have earned myself an extra 17 marks for just explining what the V-model was, with the level of clarity you provided. I need to get in touch with you some how.

david wrote re: Software Development Life Cycle Models
on Tue, Dec 26 2006 4:14 AM

     this is the best description in which i never saw about SDLC

YASIR wrote re: Software Development Life Cycle Models
on Wed, Jan 3 2007 3:29 AM

NICE ONE ISN'T IT? VERY GOOD INFORMATION TO DISPLAY ANYWHERE IN THE WORLD

THANK YOU FOR RAYMOND LEWALLEN

Varun wrote re: Software Development Life Cycle Models
on Wed, Jan 3 2007 9:54 PM

This article help me a great deal in my project on sdlc models and am just saying thankyou.

Radhika Chari wrote re: Software Development Life Cycle Models
on Wed, Jan 3 2007 11:43 PM

Hey fantastic job. All information in one place. Tanks a Ton.

Chetan wrote re: Software Development Life Cycle Models
on Thu, Jan 4 2007 12:31 AM

Hi,

A very informative post. Explained in much simpler words and a great help to all developers mostly freshers.

sunitha wrote re: Software Development Life Cycle Models
on Mon, Jan 8 2007 9:52 AM

Its really good for learners.By the way I need one more help..can any one tell me where I can find the trial version of Test Director

dilshara wrote re: Software Development Life Cycle Models
on Wed, Jan 10 2007 11:58 PM

was a real important resource for my teaching material.. thanks and keep your work continuing with such important service to all... great work!

Othniel Imaobong wrote re: Software Development Life Cycle Models
on Tue, Jan 16 2007 8:16 AM

this write up is very interesting and educative

zinat wrote re: Software Development Life Cycle Models
on Wed, Jan 17 2007 11:56 PM

this is very good.

thanks a lot

zinat wrote re: Software Development Life Cycle Models
on Wed, Jan 17 2007 11:57 PM

this is very good.

thanks a lot.

dolly wrote re: Software Development Life Cycle Models
on Mon, Jan 22 2007 12:29 AM

HI RAY

        THIS IS VERY NICE ARTICLE BUT ADVANTAGE -DISADVANTAGE SHOULD BE MORE CLEAR AND EVRY MODEL SHOULD BE EXPLAINED WITH AN EXAMPLE.

morry wrote re: Software Development Life Cycle Models
on Mon, Jan 22 2007 2:04 PM

hey there extremly well written in an understanding way..ive an exam on theses:) so thanks a miliion.

saba wrote re: Software Development Life Cycle Models
on Wed, Jan 24 2007 3:18 AM

Hi!! Thanks a lot .This article is very good & it helped me a lot in deep study of the software lifecycle development models.Thanks again.

Sasi Varma wrote re: Software Development Life Cycle Models
on Thu, Jan 25 2007 5:23 AM

Good, very useful posting. Thanks

FARZANA wrote re: Software Development Life Cycle Models
on Mon, Jan 29 2007 1:41 AM

THANKS FOR SUCH  NICE ARTICLE A GOOD RECOLLETION FOR ALL THOSE WHO WANNA A BRUSHUP THANKS AGAIN BYE AND POST OTHER ARTICLES ALSO....

Anandurs wrote re: Software Development Life Cycle Models
on Mon, Jan 29 2007 3:44 AM

Hi Ray,

Its really a useful thing in brief, Thanks for it.

srinivasa kethireddy wrote re: Software Development Life Cycle Models
on Mon, Jan 29 2007 11:42 PM

Good article. we can refresh very fast our self.

KJS wrote re: Software Development Life Cycle Models
on Wed, Jan 31 2007 11:28 AM

Good comprehensive overview! My only suggestion would be to add a Maintenance phase.

Rakesh wrote re: Software Development Life Cycle Models
on Thu, Feb 1 2007 5:44 AM

This paper has given me a clear idea about the SDLC model. In the disadvantages sections, the Risk can be explained clearly about what are the risk factors can be taken into consideration in that particular type of model. Thanks!

YW wrote re: Software Development Life Cycle Models
on Thu, Feb 1 2007 7:56 AM

This paper gives me a good explanation about SDLC.

Btw,

Can someone inform me, where I can found a comparison between SDLC used by firms (in US for example)? What is the most popular used SDLC by the firms or software house? Is there any surveys about that?

Abrar Ahmed wrote re: Software Development Life Cycle Models
on Thu, Feb 1 2007 4:41 PM

Amazing.. thanks

Clara wrote re: Software Development Life Cycle Models
on Fri, Feb 2 2007 11:27 AM

This was really very helpful. Good information about SDLC. Thanks

venkata swamy wrote re: Software Development Life Cycle Models
on Sun, Feb 4 2007 1:32 AM

very wonderful information.thank youso much

venkata swamy wrote re: Software Development Life Cycle Models
on Sun, Feb 4 2007 1:32 AM

very wonderful information.thank youso much

Zia wrote re: Software Development Life Cycle Models
on Tue, Feb 6 2007 6:05 AM

Very much helping and quick learning material .... Nice work

baka group wrote re: Software Development Life Cycle Models
on Tue, Feb 6 2007 2:43 PM

its...too good....

Chandrakant Bandmantri wrote re: Software Development Life Cycle Models
on Wed, Feb 7 2007 1:44 AM

Hi,

Thanks a lot for your vey good article.

Could you throw some light on Iterative, Prototyping, RAD ?

Regards,

- Chandra

arunkumar.R wrote re: Software Development Life Cycle Models
on Mon, Feb 12 2007 11:49 AM

its very nice ......

i think it wioll help me in my project work............

ysj wrote re: Software Development Life Cycle Models
on Sat, Feb 17 2007 1:07 PM

hi,

this is a very good thim. because when you have ans but you donot found then we found heare.

thanks....

p wrote re: Software Development Life Cycle Models
on Sat, Feb 17 2007 1:10 PM

when i found anather questions ans?

Sujith Shenoy wrote re: Software Development Life Cycle Models
on Wed, Feb 21 2007 10:22 PM

Hey,

   You kept everything very simple in this article. Itz a really good summary of different software models commonly used by many software firms.

Rohit Tewari wrote re: Software Development Life Cycle Models
on Tue, Feb 27 2007 10:01 PM

Hi,

It is a very good article. Thanks for sharing it.

Rizwan Pervaiz wrote re: Software Development Life Cycle Models
on Tue, Feb 27 2007 11:50 PM

Difference between Waterfall method and linear Sequential method?

Rizwan Pervaiz wrote re: Software Development Life Cycle Models
on Tue, Feb 27 2007 11:53 PM

Difference between Waterfall method and linear Sequential method?

Software development life cycle models « Techieminds wrote Software development life cycle models « Techieminds
on Thu, Mar 8 2007 2:39 AM
Mritunjay Sharma wrote re: Software Development Life Cycle Models
on Fri, Mar 9 2007 5:15 AM

Hey I too agree about its importants, i could have been even valuable if he you could have given of all these models.

But i would really appreciate if we can get little more deeper explanation of all these models with one to two examples.

software development india wrote re: Software Development Life Cycle Models
on Wed, Mar 14 2007 5:00 AM

Thanks...it's a very good article.It is very important that you have a sound knowledge of software development life cycle if you want to make a software that is good and more cost effective.

mansoor wrote re: Software Development Life Cycle Models
on Thu, Mar 15 2007 7:23 AM

very useful and a clear explanation of the sdlc models

ChinmayNaidu wrote re: Software Development Life Cycle Models
on Fri, Mar 16 2007 9:47 AM

Good article. Some more categories must be involved like RUP,XP etc.

Munendra wrote re: Software Development Life Cycle Models
on Tue, Mar 20 2007 6:07 AM

this is very good for s/w professtional...

munendra

software Development Services wrote re: Software Development Life Cycle Models
on Tue, Mar 20 2007 7:02 AM

Actually the Process is very much easy and adoptable for good output.

jayakumar wrote re: Software Development Life Cycle Models
on Mon, Mar 26 2007 11:21 PM

Its really good..but if u give in simple english it will be more usefull to all...

Dhvani wrote re: Software Development Life Cycle Models
on Tue, Mar 27 2007 10:54 AM

what is the difference between SDLC and Agile methodologies?

Rkreddy wrote re: Software Development Life Cycle Models
on Thu, Mar 29 2007 5:04 AM

Hi

Raymond Lewallen its really good one,

but iam suggesting its better to eloborate more about the difference between the

high level and low level design under the design phase instead of giving it in one sentence,

over all it is excelelnt

maya mohan sagar wrote re: Software Development Life Cycle Models
on Sat, Mar 31 2007 3:14 AM

Great Article, thanks

Anand Prakash wrote re: Software Development Life Cycle Models
on Wed, Apr 4 2007 11:57 PM

It is very fruitful content

Jagadish wrote re: Software Development Life Cycle Models
on Tue, Apr 10 2007 1:58 AM

very Informative.

josif wrote re: Software Development Life Cycle Models
on Mon, Apr 16 2007 4:10 AM

really thanks alot for this topic.........

radhikag1 wrote re: Software Development Life Cycle Models
on Wed, Apr 18 2007 2:49 PM

ITs wondeful, and simple, catchy too

Veenu wrote re: Software Development Life Cycle Models
on Thu, Apr 19 2007 3:25 AM

THis is very good blog i get while searching on google...

This article explain the SDLC in a very good manner. For the begineers it is a very good article.

Thanks for this article.

Regards,

Veenu kapoor

Parthasarathy Raja wrote re: Software Development Life Cycle Models
on Thu, Apr 19 2007 5:20 AM

Good One.Ease is the strength is this article.

Rama Swamy wrote re: Software Development Life Cycle Models
on Thu, Apr 19 2007 10:23 PM

good knowledge provosion to begenners

Gabriel Cassalho wrote re: Software Development Life Cycle Models
on Tue, Apr 24 2007 12:43 PM

Great Article, thanks

Rahul Soni wrote re: Software Development Life Cycle Models
on Wed, Apr 25 2007 7:14 AM

Hey, it was good overview of the SDLC. But I wonder, should i fit XP and Agile Methodology. If possible, can you please provide some details on that too.

imran javaid wrote re: Software Development Life Cycle Models
on Wed, May 9 2007 2:15 AM

THANKS FOR THIS TOPIC THANKS

Mak wrote re: Software Development Life Cycle Models
on Wed, May 9 2007 8:29 PM

Great help for interview preparation!!!!!

SK wrote re: Software Development Life Cycle Models
on Mon, May 14 2007 6:13 AM

Hi..dude this is a cool one.

Kanthi Kiran wrote re: Software Development Life Cycle Models
on Tue, May 15 2007 2:20 PM

Hi

Its very simple n best to understand the SDLC models btwn can u also include "Fish model" so that all would be at onc place.

Regards

Somasundara Rao . R wrote re: Software Development Life Cycle Models
on Fri, May 18 2007 12:07 AM

Good one. This is what looking for. Explained in simple text with good Graphical representation.

Thanks.

Somasundara Rao

Somasundara Rao wrote re: Software Development Life Cycle Models
on Fri, May 18 2007 12:42 AM

Its really Good one.  Explained in simple text with good pictorial representation. Thanks.

Venkata Reddy wrote re: Software Development Life Cycle Models
on Fri, May 18 2007 1:31 PM

Good knowledge provided about SDLC models.

Raghu wrote re: Software Development Life Cycle Models
on Sun, May 27 2007 7:44 AM

Its good to consolidate models in one place

E Murugan wrote re: Software Development Life Cycle Models
on Tue, May 29 2007 5:31 AM

This is very nice and useful article for the people who are in begining level in s/w industry.

sunitha wrote re: Software Development Life Cycle Models
on Wed, May 30 2007 1:20 AM

it is easy to understand for each model advantages and disadvantages also given

Thiyagalingam Prashanth wrote re: Software Development Life Cycle Models
on Wed, May 30 2007 2:22 AM

Good explanation and comparision on SDLC Models, I think most of the companies/products use a combination of models, like Incremental and Iteration / water fall to get the best.

surekha wrote re: Software Development Life Cycle Models
on Thu, May 31 2007 7:44 AM

thanks for sharing this information..

it was very helpful to me and simple and made all my points clear regarding the models thankq very much

Winn Mar Saw wrote re: Software Development Life Cycle Models
on Mon, Jun 4 2007 1:55 PM
Thanks a lot for your information here. It really helps with me. :-) Really, thanks again! Best regards,
Decoda wrote re: Software Development Life Cycle Models
on Mon, Jun 4 2007 11:33 PM

Very Informative but I would like to know about a few more other models. Models like, Evolutionary Development, Formal Transformaton and Reuse- Oriented System.

Shyam wrote re: Software Development Life Cycle Models
on Fri, Jun 8 2007 12:06 AM

This is simply superb, ideal way of explaining SDLC and anyone can understand

SIVAI wrote re: Software Development Life Cycle Models
on Fri, Jun 8 2007 11:44 AM

WHAT ABOUT AGILE MODEL. CAN SOMEBODY EXPLAIN ABOUT DIFFERNCE BETWEEN AGILE AND OTHER MODELS ,PLS.

SIVAJI wrote re: Software Development Life Cycle Models
on Fri, Jun 8 2007 11:46 AM
COULD SOMEBODY PLS EXAPLAIN THE DIFFERNCE BETWEEN AGILE AND OTHER MODELS
Rizwan wrote re: Software Development Life Cycle Models
on Tue, Jun 12 2007 5:34 AM

This is really nice.My project manager really appreciates it.

PROMISE wrote re: Software Development Life Cycle Models
on Wed, Jun 13 2007 1:00 PM

THANKZ THAT REALLY HELP ME,I STRUGGLING WITH C.

jitendra chauthani wrote re: Software Development Life Cycle Models