1.agile methods 2.plan-driven and agile development 4...

24
Agile Software Development: 1.Agile methods 2.Plan-driven and agile development 3.Extreme programming (XP) 4.Agile project management 5.Pair Programming 6.Scrum 7.Scaling agile methods

Upload: others

Post on 22-Jul-2020

3 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

Agile Software Development:

1.Agile methods

2.Plan-driven and agile development

3.Extreme programming (XP)

4.Agile project management

5.Pair Programming

6.Scrum

7.Scaling agile methods

Page 2: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

Rapid software development:

• Rapid development and delivery is

now often the most important

requirement for software systems

-Businesses operate in a fast –changing

requirement and it is practically

impossible to produce a set of stable

software requirements

-Software has to evolve quickly to

reflect changing business needs.

• Rapid software development

-Specification, design and

implementation are inter-leaved

-System is developed as a series of

versions with stakeholders involved in

version evaluation

Page 3: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

-User interfaces are often developed

using an IDE and graphical toolset.

Page 4: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

Agile methods:

• Dissatisfaction with the overheads

involved in software design methods

of the 1980s and 1990s led to the

creation of agile methods. These

methods:

-Focus on the code rather than the

design

-Are based on an iterative approach to

software development

-Are intended to deliver working

software quickly and evolve this quickly

to meet changing requirements.

• The aim of agile methods is to

reduce overheads in the software

process (e.g. by limiting

Page 5: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

documentation) and to be able to

respond quickly to changing

requirements without excessive

rework.

Page 6: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

Agile manifesto:

• We are uncovering better ways of

developing software by doing it and

helping others do it. Through this

work we have come to value:

-Individuals and interactions over

processes and tools

Working software over comprehensive

documentation

Customer collaboration over contract

negotiation

Responding to change over following a

plan

-That is, while there is value in the

items on the right, we value the items

on the left more.

Page 7: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

The principles of agile methods:

Principle Description

Customer involvement

Customers should be closely involved throughout the development process. Their role is provide and prioritize new system requirements and to evaluate the iterations of the system.

Incremental delivery

The software is developed in increments with the customer specifying the requirements to be included in each increment.

People not process

The skills of the development team should be recognized and exploited. Team members should be left to develop their own ways of working without prescriptive processes.

Embrace change Expect the system requirements to change and so design the system to accommodate these changes.

Maintain simplicity

Focus on simplicity in both the software being developed and in the development process. Wherever possible, actively work to eliminate complexity from the system.

Page 8: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

Problems with agile methods:

• It can be difficult to keep the interest

of customers who are involved in the

process.

• Team members may be unsuited to

the intense involvement that

characterizes agile methods.

• Prioritizing changes can be difficult

where there are multiple

stakeholders.

• Maintaining simplicity requires extra

work.

• Contracts may be a problem as with

other approaches to iterative

development.

Page 9: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

Plan-driven and agile development

• Plan-driven development

-A plan-driven approach to software

engineering is based around separate

development stages with the outputs to

be produced at each of these stages

planned in advance.

-Not necessarily waterfall model – plan-

driven, incremental development is

possible

-Iteration occurs within activities.

• Agile development

-Specification, design, implementation

and testing are inter-leaved and the

outputs from the development process

are decided through a process of

Page 10: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

negotiation during the software

development process.

Page 11: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

Plan-driven and agile specification

Page 12: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

Extreme programming

• Perhaps the best-known and most

widely used agile method.

• Extreme Programming (XP) takes an

‘extreme’ approach to iterative

development.

-New versions may be built several

times per day;

-Increments are delivered to customers

every 2 weeks;

-All tests must be run for every build

and the build is only accepted if tests

run successfully.

Page 13: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

The extreme programming release cycle

Page 14: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

Pair programming

• In XP, programmers work in pairs,

sitting together to develop code.

• This helps develop common

ownership of code and spreads

knowledge across the team.

• It serves as an informal review

process as each line of code is

looked at by more than 1 person.

• It encourages refactoring as the

whole team can benefit from this.

• Measurements suggest that

development productivity with pair

programming is similar to that of

two people working independently.

Page 15: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

Advantages of pair programming

• It supports the idea of collective

ownership and responsibility for the

system.

-Individuals are not held responsible for

problems with the code. ------Instead,

the team has collective responsibility

for resolving these problems.

• It acts as an informal review process

because each line of code is looked

at by at least two people.

• It helps support refactoring, which is

a process of software improvement.

-Where pair programming and

collective ownership are used, others

benefit immediately from the

Page 16: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

refactoring so they are likely to support

the process.

Page 17: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

Agile project management

• The principal responsibility of

software project managers is to

manage the project so that the

software is delivered on time and

within the planned budget for the

project.

• The standard approach to project

management is plan-driven.

Managers draw up a plan for the

project showing what should be

delivered, when it should be

delivered and who will work on the

development of the project

deliverables.

Page 18: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

• Agile project management requires a

different approach, which is adapted

to incremental development and the

particular strengths of agile

methods.

Page 19: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

Scrum

• The Scrum approach is a general

agile method but its focus is on

managing iterative development

rather than specific agile practices.

• There are three phases in Scrum.

-The initial phase is an outline planning

phase where you establish the general

objectives for the project and design

the software architecture.

-This is followed by a series of sprint

cycles, where each cycle develops an

increment of the system.

-The project closure phase wraps up the

project, completes required

documentation such as system help

Page 20: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

frames and user manuals and assesses

the lessons learned from the project.

Page 21: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

The Scrum process

Page 22: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

Scrum benefits

• The product is broken down into a

set of manageable and

understandable chunks.

• Unstable requirements do not hold

up progress.

• The whole team have visibility of

everything and consequently team

communication is improved.

• Customers see on-time delivery of

increments and gain feedback on

how the product works.

• Trust between customers and

developers is established and a

positive culture is created in which

Page 23: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

everyone expects the project to

succeed.

THANK YOU

Page 24: 1.Agile methods 2.Plan-driven and agile development 4 ...docshare01.docshare.tips/files/20977/209770841.pdf · Agile project management • The principal responsibility of software

NAME: MAYURI TAMBE

STD: S. Y. BSC(IT)

ROLL NO:124

SUBJECT:SOFTWARE ENGINEERING

TOPIC NAME : AGILE SOFTWARE

DEVELOPMENT