Michelle Jean G. Galvan June 18, 2014 Bscpe - 4 Software Engineering
The document discusses several software development models:
1. The waterfall model is a sequential process with phases for requirements, design, implementation, testing, deployment, and maintenance.
2. The spiral model is an iterative process with four phases - planning, risk analysis, implementation, and evaluation - that a project repeats.
3. Iterative development builds a software project incrementally in small portions to uncover issues early.
4. Agile development also uses iteration for continuous feedback to refine a software system.
5. Rapid application development minimizes planning in favor of rapid prototyping with methods like iteration and prototyping.
6. Code and fix is not a deliberate strategy but results from naivety and schedule
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
56 views3 pages
Michelle Jean G. Galvan June 18, 2014 Bscpe - 4 Software Engineering
The document discusses several software development models:
1. The waterfall model is a sequential process with phases for requirements, design, implementation, testing, deployment, and maintenance.
2. The spiral model is an iterative process with four phases - planning, risk analysis, implementation, and evaluation - that a project repeats.
3. Iterative development builds a software project incrementally in small portions to uncover issues early.
4. Agile development also uses iteration for continuous feedback to refine a software system.
5. Rapid application development minimizes planning in favor of rapid prototyping with methods like iteration and prototyping.
6. Code and fix is not a deliberate strategy but results from naivety and schedule
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3
Michelle Jean G.
Galvan June 18, 2014
BSCpE - 4 Software Engineering
SOFTWARE DEVELOPMENT PROCESS
A software development process, also known as a software development life-cycle (SDLC), is a structure imposed on the development of a software product. Similar terms include software life cycle and software process. It is often considered a subset of systems development life cycle. There are several models for such processes, each describing approaches to a variety of tasks or activities that take place during the process. Some people consider a life-cycle model a more general term and a software development process a more specific term. For example, there are many specific software development processes that 'fit' the spiral life-cycle model. ISO/IEC 12207 is an international standard for software life-cycle processes. It aims to be the standard that defines all the tasks required for developing and maintaining software.
SOFTWARE DEVELOPMENT MODELS
1. Waterfall Model The waterfall model shows a process, where developers have to follow these phases in order: 1. Requirements specification (Requirements analysis) 2. Software design 3. Implementation and Integration 4. Testing (or Validation) 5. Deployment (or Installation) 6. Maintenance
2. Spiral Model The Spiral is visualized as a process passing through some number of iterations, with the four quadrant diagram representative of the following activities: 1. Formulate plans to: identify software targets, implement the program, clarify the project development restrictions 2. Risk analysis: an analytical assessment of selected programs, to consider how to identify and eliminate risk 3. Implementation of the project: the implementation of software development and verification
3. Iterative and Incremental Development Iterative development
prescribes the construction of initially small but ever-larger portions of a software project to help all those involved to uncover important issues early before problems or faulty assumptions can lead to disaster.
4. Agile Development Agile software development uses iterative development as a basis but advocates a lighter and more people-centric viewpoint than traditional approaches. Agile processes fundamentally incorporate iteration and the continuous feedback that it provides to successively refine and deliver a software system.
5. Rapid Application Development Rapid application development R.A.D is a software development methodology that uses minimal planning in favor of rapid prototyping. The "planning" of software developed using RAD is interleaved with writing the software itself. The lack of extensive pre-planning generally allows software to be written much faster, and makes it easier to change requirements. RAD involves methods like iterative development and software prototyping. According to Whitten (2004), it is a merger of various structured techniques, especially data-driven Information Engineering, with prototyping techniques to accelerate software systems development.
6. Code and Fix "Code and fix" development is not so much a deliberate strategy as an artifact of navet and schedule pressure on software developers. Without much of a design in the way, programmers immediately begin producing code. At some point, testing begins (often late in the development cycle), and the unavoidable bugs must then be fixed before the product can be shipped. See also: Continuous integration and Cowboy coding.