SlideShare a Scribd company logo
1 of 47
Object-Oriented Systems
Development Life Cycle
Chapter 3
Introduction
●The essence of the software
development process that
consists of analysis, design,
implementation, testing, and
refinement is to transform
user’s needs into a software
solution that satisfies those
needs. SahajComputer Solutions Object Oriented Systems Development 2
Introduction
● The object oriented approach requires a
more rigorous process to do things right.
● You need not see code until after about 25
percent of the development time, because
you need to spend more time in
gathering requirements, developing a
requirement model and an analysis model,
then turning them into the design
model.
SahajComputer Solutions Object Oriented Systems Development 3
The software development process
SahajComputer Solutions Object Oriented Systems Development 4
The software development process
● The software development process can be
divided into smaller
,interacting sub processes.
● Generally software development can be seen as
aseries of transformations, where the output of
one transformation becomes the input of the
subsequent transformation.
SahajComputer Solutions Object Oriented Systems Development 5
The software development process
● Transformation1(Analysis):
◦ Translates the user’s needs into
system requirements and
responsibilities.
◦ The way they use the system can
provide insight into the user’s
requirements.
SahajComputer Solutions Object Oriented Systems Development 6
The software development process
● Transformation 2 (design):
◦ This transformation includes the
bulk of the software
development activity, including
the definition of how to build
the software, its development,
and its testing.
SahajComputer Solutions Object Oriented Systems Development 7
The software development process
● Transformation 3(Implementation)
◦ refines the detailed design into the
system deployment that will satisfy
the user’s needs.
◦ This takes into account
equipment, procedures,
people, and thelike.
◦ .
SahajComputer Solutions Object Oriented Systems Development 8
Waterfall Model
● An example of the software development
process is the waterfall approach which
starts with deciding what has to be done.
● Once the requirements havebeen
determined, we next must decide how to
accomplish them.
● This is followed by astep in which we do it,
whatever it has required us to do.
● We then must test the result to see if we
havesatisfied the user’s requirements.
● Finally we use the what we have done.
SahajComputer Solutions Object Oriented Systems Development 9
Waterfall Model
SahajComputer Solutions Object Oriented Systems Development 10
BUILDING HIGH-QUALITY
SOFTWARE
● High-quality products must
meet users' needs and
expectations.
● Furthermore, the products should
attain this with minimal or no
defects, the focus being on
improving products (or services)
prior to delivery rather than
correcting them after delivery.
SahajComputer Solutions Object Oriented Systems Development 11
BUILDING HIGH-QUALITY
SOFTWARE
● Blum describes ameans of system
evaluation in terms of four quality
measures:
● correspondence,
● correctness,
● verification, and
● validation.
SahajComputer Solutions Object Oriented Systems Development 12
BUILDING HIGH-QUALITY
SOFTWARE
● Validation begins as soon as the project
starts, but verification can begin only after
aspecification has been accepted.
● Verification and validation are
independent of each other
.
● It is possible to haveaproduct that
corresponds to the specification, but if
the specification proves to be incorrect,
we do not havethe right product;
SahajComputer Solutions Object Oriented Systems Development 13
Object-Oriented Systems
Development:A use case driven
approach
● The object oriented software
development lifecycle(SDLC) consists of
three macro processes:
◦ Object-oriented analysis
◦ Object-oriented design
◦ Object-oriented implementation
SahajComputer Solutions Object Oriented Systems Development 14
Object-Oriented Systems
Development:A use case driven
approach
SahajComputer Solutions Object Oriented Systems Development 15
Object-Oriented Systems Development:A
use case driven approach
● The use case model can be employed
throughout most activities of software
development.
● Furthermore, by following the lifecycle
model of Jacobson ,Ericsson and
Jacobson, one can produce designs that
are traceable across requirements,
analysis, design, implementation, and
testing.
SahajComputer Solutions Object Oriented Systems Development 16
Object-Oriented Systems Development:A
use case driven approach
SahajComputer Solutions Object Oriented Systems Development 17
Object-Oriented Systems
Development: A use case driven
approach
● The main advantage is that alldesign
decisions can be tracked back directly to
user requirements.
● Use case scenarios can become test
scenarios.
SahajComputer Solutions Object Oriented Systems Development 18
Object-Oriented Systems
Development: A use case driven
approach
● Object oriented systems development
includes these activities:
◦ Object-oriented analysis- Use case driven
◦ Object oriented design
◦ Prototyping
◦ Component-based development
◦ Incremental testing
SahajComputer Solutions Object Oriented Systems Development 19
Object oriented Analysis- Use case
Driven
● The object oriented analysis phase of
software development is concerned with
determining the system requirements and
identifying classes and their relationship
to other classes in the problem domain.
● To understand the system requirements,
we need to identify the users or the
actors.
● Who are the actors and how do they use
the system?
SahajComputer Solutions Object Oriented Systems Development 20
Object oriented Analysis- Use case
Driven
● Ivar Jacobson came up with the concept
of use case, his name for ascenario to
describe the user- computer system
interaction.
● This concept worked so well that it
became the primary element in the
system development.
● The object-oriented community has
adopted use cases to aremarkable
degree.
SahajComputer Solutions Object Oriented Systems Development 21
Object oriented Analysis- Use case
Driven
● Scenarios are a great way of examining
who does what in the interactions among
objects and what role they play;i.e.,their
interrelationships.
● This intersection among object’s roles to
achieve agiven goal is called
collaboration.
● A use case is atypical interaction
between auser and system that captures
user’s goals and needs.
SahajComputer Solutions Object Oriented Systems Development 22
Object oriented Analysis- Use case
Driven
● Expressing these high-level processes and
interactions with customers in a scenario
and analyzing it is referred to as use case
modeling.
● The use case model represents the user’s
view of the system or user’s needs.
SahajComputer Solutions Object Oriented Systems Development 23
Object oriented Analysis- Use case
Driven
● This process of developing use cases, like
other object-oriented activities, is
iterative—once your use-case model is
better understood and developed you
should start to identify classes and create
their relationships
SahajComputer Solutions Object Oriented Systems Development 24
Object oriented Analysis- Use case
Driven
● Documentation is another important activity
,
which does not end with object-oriented
analysis but should be carried out
throughout the system development.
● Make the document as short as possible.
● The 80-20 rule generally applies for
documentation: 80 % of the work can be
done with 20% of documentation.
● Documentation and modeling are not
separate activities, and good modeling
implies good documentation.
SahajComputer Solutions Object Oriented Systems Development 25
Object-Oriented Design
● The goal of object-oriented design (OOD)
is to design the classes identified during the
analysis phase and the user interface.
● During this phase, we identify and define
additional objects and classes that support
implementation of the requirements.
● For example, during the design phase,you
might need to add objects for the user
interface to the system (e.g.,dataentry
windows, browse windows).
SahajComputer Solutions Object Oriented Systems Development 26
Object-Oriented Design
● Object-oriented design and object-
oriented analysis are distinct disciplines,
but they can be intertwined.
● Object-oriented development is highly
incremental; in other words, you start
with object-oriented analysis, model it,
create an object-oriented design, then do
some more of each,againand again,
gradually refining and completing models
of the system:
SahajComputer Solutions Object Oriented Systems Development 27
Object-Oriented Design
● First, build the object model based on
objects and their relationships, then
iterate and refine the model:
◦ Design and refine classes.
◦ Design and refine attributes.
◦ Design and refine methods.
◦ Design and refine structures.
◦ Design and refine associations.
SahajComputer Solutions Object Oriented Systems Development 28
Object-Oriented Design
● Here are afewguidelines to use in your
object-oriented design:
◦ Reuse, rather than build,anew class.Know
the existing classes.
◦ Design alarge number of simple classes,
rather than asmall number of complex
classes.
◦ Design methods.
◦ Critique what you haveproposed. Ifpossible,
go back and refine the classes.
SahajComputer Solutions Object Oriented Systems Development 29
Prototyping
● Although the object-oriented analysis and
design describe the system features, it is
important to construct aprototype of
some of the key system components
shortly after the products are selected.
● It has been said "a picture may be worth a
thousand words, but a prototype is worth
athousand pictures" [author unknown].
SahajComputer Solutions Object Oriented Systems Development 30
Prototyping
● Essentially,prototype is aversion of a
software product developed in the early
stages of the product’s lifecycle for specific,
experimental purposes.
● A prototype enables you understand how
easy or difficult it will be to implement some
of the features of the system.
● It also can give users achance to comment
on the usability and usefulness of the user
interface design and lets you assess the fit
between the software tools selected, the
functional specification, and the user needs.
SahajComputer Solutions Object Oriented Systems Development 31
Prototyping
● Prototyping can further define the use cases,
and it actuallymakes use-case modeling
much easier
.
● Traditionally,prototyping was used as a
"quick and dirty" way to test the design, user
interface, and so forth, something to be
thrown awaywhen the "industrial strength"
version was developed.
● However
, the new trend, such as using rapid
application development, is to refine the
prototype into the final product.
SahajComputer Solutions Object Oriented Systems Development 32
Prototyping
● Prototypes have been categorized in
various ways:
◦ A horizontal prototype is a simulation of the
interface (that is, it has the entire user
interface that will be in the full-featured
system) but contains no functionality.
◦ This has the advantages of being very quick to
implement, providing a good overall feel of the
system, and allowing users to evaluate the
interface on the basis of their normal,
expected perception of the system.
SahajComputer Solutions Object Oriented Systems Development 33
Prototyping
◦ A vertical prototype is a subset of the system
features with complete functionality.
◦ The principal advantage of this method is that the
few implemented functions can be tested in great
depth.
◦ In practice, prototypes are ahybrid between
horizontal and vertical.
◦ The major portions of the interface are
established so the user can get the feelof the
system, and features having ahigh degree of risk
are prototyped with much more functionality
SahajComputer Solutions Object Oriented Systems Development 34
Prototyping
◦ An analysis prototype is an aid for exploring
the problem domain.
◦ This class of prototype is used to inform, the
user and demonstrate the proof of aconcept.
◦ It is not used as the basis of development,
however
, and is discarded when it has served
its purpose.
◦ The finalproduct will use the concepts
exposed by the prototype, not its code.
SahajComputer Solutions Object Oriented Systems Development 35
Prototyping
◦ A domain prototype is anaid for the
incremental development of the ultimate
software solution.
◦ It often is used as atool for the staged
delivery of subsystems to the users or other
members of the development team.
◦ It demonstrates the feasibility of the
implementation and eventually will evolve into
adeliverableproduct.
SahajComputer Solutions Object Oriented Systems Development 36
Implement: Component Based
Development
● Manufacturers learned that benefits of
moving from custom development to
assembly from prefabricated components.
● Components based manufacturing makes
many products availableto the market place
that otherwise would be expensive.
● Modern manufacturing has evolved to
exploit two crucial factors underlying today’s
market requirements: reduce cost and time
to market by building from prebuilt, ready-
tested components.
SahajComputer Solutions Object Oriented Systems Development 37
Component based development
● T
oday’software components are built and
tested in-house, using awide range of
technologies like CASE TOOLS that allows
● Component-based development (CBD) is
an industrialized approach to the software
development process.
● Application development moves from
custom development to assembly of prebuilt,
pretested, reusable software components
that operate with each other
.
SahajComputer Solutions Object Oriented Systems Development 38
Component based development
● Two basic ideas underlie component-
based development.
● First, the application development can be
improved significantly ifapplications can
be assembled quickly from prefabricated
software components.
● Second, an increasingly large collection of
interpretable software components could
be made available to developers in both
general and specialist catalogs.
SahajComputer Solutions Object Oriented Systems Development 39
Component based development
● A CBD developer can assemble
components to construct acomplete
software system.
● Components themselves maybe
constructed from other components and
so on down to the level of prebuilt
components or old-fashioned code
written in alanguage such as C, assembler,
or COBOL.
SahajComputer Solutions Object Oriented Systems Development 40
Rapid application development
● Rapid application development (RAD)
is aset of tools and techniques that can
be used to build an application faster than
typically possible with traditional
methods.
● The term often is used in conjunction
with software prototyping .
● It is widely held that,to achieve,RAD, the
developer sacrifices the quality of the
product for aquickerdelivery.
SahajComputer Solutions Object Oriented Systems Development 41
Rapid application development
● This is not necessarily the case. RAD is
concerned primarily with reducing the
"time to market," not exclusively the
software development time.
● In fact,one successful RAD application
achieved asubstantial reduction in time to
market but realized no significant
reduction in the individual software cycles
SahajComputer Solutions Object Oriented Systems Development 42
Rapid application development
● RAD does not replace the system
development lifecycle (see the Real-World
case) but complements it,since it focuses
more on process description and can be
combined perfectly with the object-oriented
approach.
● The task of RAD is to build the application
quickly and incrementally implement the
design and user requirements, through tools
such as Delphi,VisualAge,Visual Basic, or
PowerBuilder.
SahajComputer Solutions Object Oriented Systems Development 43
IncrementalTesting
● That's what happened atBankers Trust in
1992: "Our testing was very completeand
good, but it was costing alot of money
and would add months onto aproject,"
says Glenn Shimamoto, vice president of
technology and strategic planning atthe
New Yorkbank.
SahajComputer Solutions Object Oriented Systems Development 44
IncrementalTesting
● In one case,testing added nearly six months
to the development of afunds transfer
application.
● The problem was that developers would
turn over applications to aquality assurance
(QA) group for testing only after
development was completed.
● Since the QA group wasn't included in the
initial plan,it had no clear picture of the
system characteristics until it came time to
test.
SahajComputer Solutions Object Oriented Systems Development 45
REUSABILITY
● A major benefit of object-oriented system
development is reusability,and this is the
most difficult promise to deliver on.
● For an object to be really reusable, much
more effort must be spent designing it.
● To deliver areusable object,the
development teammust havethe up-front
time to design reusability into the object.
● The potential benefits of reuse are clear:
increased reliability
, reduced time and cost
for development, and improved consistency
SahajComputer Solutions Object Oriented Systems Development 46
REUSABILITY
● The reuse strategy can be based on the
following:
◦ Information hiding (encapsulation).
◦ Conformance to naming standards.
◦ Creation and administration of an object
repository.
◦ Encouragement by strategic management of reuse
as opposed to constant redevelopment.
◦ Establishing targets for a percentage of the
objects in the project to be reused (i.e., 50
percent reuse of objects).
SahajComputer Solutions Object Oriented Systems Development 47

More Related Content

What's hot

Polygons - Computer Graphics - Notes
Polygons - Computer Graphics - NotesPolygons - Computer Graphics - Notes
Polygons - Computer Graphics - NotesOmprakash Chauhan
 
software project management
software project managementsoftware project management
software project managementdeep sharma
 
Software Engineering Diversity
Software Engineering DiversitySoftware Engineering Diversity
Software Engineering DiversitySayedMokarrom
 
Software Project Management - Staffing
Software Project Management - StaffingSoftware Project Management - Staffing
Software Project Management - StaffingTanishqRongta1
 
Advanced topics in artificial neural networks
Advanced topics in artificial neural networksAdvanced topics in artificial neural networks
Advanced topics in artificial neural networksswapnac12
 
Software Process Models
Software Process ModelsSoftware Process Models
Software Process ModelsAtul Karmyal
 
Importance & Principles of Modeling from UML Designing
Importance & Principles of Modeling from UML DesigningImportance & Principles of Modeling from UML Designing
Importance & Principles of Modeling from UML DesigningABHISHEK KUMAR
 
Interface specification
Interface specificationInterface specification
Interface specificationmaliksiddique1
 
Agreement Protocols, distributed File Systems, Distributed Shared Memory
Agreement Protocols, distributed File Systems, Distributed Shared MemoryAgreement Protocols, distributed File Systems, Distributed Shared Memory
Agreement Protocols, distributed File Systems, Distributed Shared MemorySHIKHA GAUTAM
 
Design and Implementation in Software Engineering
Design and Implementation in Software EngineeringDesign and Implementation in Software Engineering
Design and Implementation in Software EngineeringKourosh Sajjadi
 
sutherland- Hodgeman Polygon clipping
sutherland- Hodgeman Polygon clippingsutherland- Hodgeman Polygon clipping
sutherland- Hodgeman Polygon clippingArvind Kumar
 
Multi processor scheduling
Multi  processor schedulingMulti  processor scheduling
Multi processor schedulingShashank Kapoor
 
Lecture 9 understanding requirements
Lecture 9   understanding requirementsLecture 9   understanding requirements
Lecture 9 understanding requirementsIIUI
 
COMPUTER GRAPHICS PROJECT REPORT
COMPUTER GRAPHICS PROJECT REPORTCOMPUTER GRAPHICS PROJECT REPORT
COMPUTER GRAPHICS PROJECT REPORTvineet raj
 

What's hot (20)

Polygons - Computer Graphics - Notes
Polygons - Computer Graphics - NotesPolygons - Computer Graphics - Notes
Polygons - Computer Graphics - Notes
 
software project management
software project managementsoftware project management
software project management
 
Software Engineering Diversity
Software Engineering DiversitySoftware Engineering Diversity
Software Engineering Diversity
 
Software Project Management - Staffing
Software Project Management - StaffingSoftware Project Management - Staffing
Software Project Management - Staffing
 
Illumination Models & Shading
Illumination Models & ShadingIllumination Models & Shading
Illumination Models & Shading
 
Advanced topics in artificial neural networks
Advanced topics in artificial neural networksAdvanced topics in artificial neural networks
Advanced topics in artificial neural networks
 
Loops in flow
Loops in flowLoops in flow
Loops in flow
 
Behavioural modelling
Behavioural modellingBehavioural modelling
Behavioural modelling
 
Software Process Models
Software Process ModelsSoftware Process Models
Software Process Models
 
Importance & Principles of Modeling from UML Designing
Importance & Principles of Modeling from UML DesigningImportance & Principles of Modeling from UML Designing
Importance & Principles of Modeling from UML Designing
 
Interface specification
Interface specificationInterface specification
Interface specification
 
Agreement Protocols, distributed File Systems, Distributed Shared Memory
Agreement Protocols, distributed File Systems, Distributed Shared MemoryAgreement Protocols, distributed File Systems, Distributed Shared Memory
Agreement Protocols, distributed File Systems, Distributed Shared Memory
 
Uml class-diagram
Uml class-diagramUml class-diagram
Uml class-diagram
 
Design and Implementation in Software Engineering
Design and Implementation in Software EngineeringDesign and Implementation in Software Engineering
Design and Implementation in Software Engineering
 
sutherland- Hodgeman Polygon clipping
sutherland- Hodgeman Polygon clippingsutherland- Hodgeman Polygon clipping
sutherland- Hodgeman Polygon clipping
 
Multi processor scheduling
Multi  processor schedulingMulti  processor scheduling
Multi processor scheduling
 
Lecture 9 understanding requirements
Lecture 9   understanding requirementsLecture 9   understanding requirements
Lecture 9 understanding requirements
 
Common Standards in Cloud Computing
Common Standards in Cloud ComputingCommon Standards in Cloud Computing
Common Standards in Cloud Computing
 
COMPUTER GRAPHICS PROJECT REPORT
COMPUTER GRAPHICS PROJECT REPORTCOMPUTER GRAPHICS PROJECT REPORT
COMPUTER GRAPHICS PROJECT REPORT
 
Distributed System - Security
Distributed System - SecurityDistributed System - Security
Distributed System - Security
 

Similar to OOSDLC.pptx

Object oriented-systems-development-life-cycle ppt
Object oriented-systems-development-life-cycle pptObject oriented-systems-development-life-cycle ppt
Object oriented-systems-development-life-cycle pptKunal Kishor Nirala
 
process models- software engineering
process models- software engineeringprocess models- software engineering
process models- software engineeringArun Nair
 
Types of Software life cycle
Types of Software life cycleTypes of Software life cycle
Types of Software life cycleSanthia RK
 
1. object oriented concepts & principles
1. object oriented concepts & principles 1. object oriented concepts & principles
1. object oriented concepts & principles poonam bora
 
SE_Unit 2.pdf it is a process model of it student
SE_Unit 2.pdf it is a process model of it studentSE_Unit 2.pdf it is a process model of it student
SE_Unit 2.pdf it is a process model of it studentRAVALCHIRAG1
 
Software Project management
Software Project managementSoftware Project management
Software Project managementsameer farooq
 
Software Development Life Cycle (SDLC )
Software Development Life Cycle (SDLC )Software Development Life Cycle (SDLC )
Software Development Life Cycle (SDLC )eshtiyak
 
SE18_Lec 02_Software Life Cycle Model
SE18_Lec 02_Software Life Cycle ModelSE18_Lec 02_Software Life Cycle Model
SE18_Lec 02_Software Life Cycle ModelAmr E. Mohamed
 
se02_SW_Process.ppt
se02_SW_Process.pptse02_SW_Process.ppt
se02_SW_Process.pptNhân Công
 
Software Engineering Process Models
Software Engineering Process Models Software Engineering Process Models
Software Engineering Process Models Satya P. Joshi
 
Generic Software Process Models
Generic Software Process ModelsGeneric Software Process Models
Generic Software Process ModelsEducation Front
 
Introduction To Testing by enosislearning.com
Introduction To Testing by enosislearning.com Introduction To Testing by enosislearning.com
Introduction To Testing by enosislearning.com enosislearningcom
 

Similar to OOSDLC.pptx (20)

Object oriented-systems-development-life-cycle ppt
Object oriented-systems-development-life-cycle pptObject oriented-systems-development-life-cycle ppt
Object oriented-systems-development-life-cycle ppt
 
process models- software engineering
process models- software engineeringprocess models- software engineering
process models- software engineering
 
Types of Software life cycle
Types of Software life cycleTypes of Software life cycle
Types of Software life cycle
 
Object oriented analysis and design unit- i
Object oriented analysis and design unit- iObject oriented analysis and design unit- i
Object oriented analysis and design unit- i
 
1. object oriented concepts & principles
1. object oriented concepts & principles 1. object oriented concepts & principles
1. object oriented concepts & principles
 
Bai giang-se-20feb14
Bai giang-se-20feb14Bai giang-se-20feb14
Bai giang-se-20feb14
 
SE_Unit 2.pdf it is a process model of it student
SE_Unit 2.pdf it is a process model of it studentSE_Unit 2.pdf it is a process model of it student
SE_Unit 2.pdf it is a process model of it student
 
Software Project management
Software Project managementSoftware Project management
Software Project management
 
Software models
Software modelsSoftware models
Software models
 
UNIT 01 SMD.pptx
UNIT 01 SMD.pptxUNIT 01 SMD.pptx
UNIT 01 SMD.pptx
 
Software Development Life Cycle (SDLC )
Software Development Life Cycle (SDLC )Software Development Life Cycle (SDLC )
Software Development Life Cycle (SDLC )
 
SE18_Lec 02_Software Life Cycle Model
SE18_Lec 02_Software Life Cycle ModelSE18_Lec 02_Software Life Cycle Model
SE18_Lec 02_Software Life Cycle Model
 
Chapter 2
Chapter 2Chapter 2
Chapter 2
 
se02_SW_Process.ppt
se02_SW_Process.pptse02_SW_Process.ppt
se02_SW_Process.ppt
 
SE Lecture 2.ppt
SE Lecture 2.pptSE Lecture 2.ppt
SE Lecture 2.ppt
 
Software Engineering Process Models
Software Engineering Process Models Software Engineering Process Models
Software Engineering Process Models
 
Pawan111
Pawan111Pawan111
Pawan111
 
Generic Software Process Models
Generic Software Process ModelsGeneric Software Process Models
Generic Software Process Models
 
Introduction To Testing by enosislearning.com
Introduction To Testing by enosislearning.com Introduction To Testing by enosislearning.com
Introduction To Testing by enosislearning.com
 
Unit -1.ppt
Unit -1.pptUnit -1.ppt
Unit -1.ppt
 

More from RAJESH S

Entreprise Resource Planning s unit 2.ppt
Entreprise Resource Planning s unit 2.pptEntreprise Resource Planning s unit 2.ppt
Entreprise Resource Planning s unit 2.pptRAJESH S
 
Decision support systems in information management
Decision support systems in information managementDecision support systems in information management
Decision support systems in information managementRAJESH S
 
IM Unit 4 Security and its a control.ppt
IM Unit 4 Security and its a control.pptIM Unit 4 Security and its a control.ppt
IM Unit 4 Security and its a control.pptRAJESH S
 
unit5 Enterprise Resource Planning new trends.ppt
unit5 Enterprise Resource Planning new trends.pptunit5 Enterprise Resource Planning new trends.ppt
unit5 Enterprise Resource Planning new trends.pptRAJESH S
 
science engineering and technology .pptx
science engineering and technology .pptxscience engineering and technology .pptx
science engineering and technology .pptxRAJESH S
 
policies in economics trends for engineers
policies in economics trends for engineerspolicies in economics trends for engineers
policies in economics trends for engineersRAJESH S
 
Product Decisions and its aplication in global world
Product Decisions and its aplication in global worldProduct Decisions and its aplication in global world
Product Decisions and its aplication in global worldRAJESH S
 
Database management system basics and it applications
Database management system basics and it applicationsDatabase management system basics and it applications
Database management system basics and it applicationsRAJESH S
 
Computer Animation.pptx
Computer Animation.pptxComputer Animation.pptx
Computer Animation.pptxRAJESH S
 
IOT in agriculture.pptx
IOT in agriculture.pptxIOT in agriculture.pptx
IOT in agriculture.pptxRAJESH S
 
18copy.pptx
18copy.pptx18copy.pptx
18copy.pptxRAJESH S
 
ERP unit 1.ppt
ERP unit 1.pptERP unit 1.ppt
ERP unit 1.pptRAJESH S
 
fiscalpolicy.ppt
fiscalpolicy.pptfiscalpolicy.ppt
fiscalpolicy.pptRAJESH S
 
CASE Tools lab.ppt
CASE Tools lab.pptCASE Tools lab.ppt
CASE Tools lab.pptRAJESH S
 
DAA ppt.pptx
DAA ppt.pptxDAA ppt.pptx
DAA ppt.pptxRAJESH S
 
DAA 1 ppt.pptx
DAA 1 ppt.pptxDAA 1 ppt.pptx
DAA 1 ppt.pptxRAJESH S
 
ARITHMETIC LOGIC UNIT.ppt
ARITHMETIC LOGIC UNIT.pptARITHMETIC LOGIC UNIT.ppt
ARITHMETIC LOGIC UNIT.pptRAJESH S
 
Virtual memory translation.pptx
Virtual memory translation.pptxVirtual memory translation.pptx
Virtual memory translation.pptxRAJESH S
 
Common memory technologies.pptx
Common memory technologies.pptxCommon memory technologies.pptx
Common memory technologies.pptxRAJESH S
 
Components of Computer system.ppt
Components of Computer system.pptComponents of Computer system.ppt
Components of Computer system.pptRAJESH S
 

More from RAJESH S (20)

Entreprise Resource Planning s unit 2.ppt
Entreprise Resource Planning s unit 2.pptEntreprise Resource Planning s unit 2.ppt
Entreprise Resource Planning s unit 2.ppt
 
Decision support systems in information management
Decision support systems in information managementDecision support systems in information management
Decision support systems in information management
 
IM Unit 4 Security and its a control.ppt
IM Unit 4 Security and its a control.pptIM Unit 4 Security and its a control.ppt
IM Unit 4 Security and its a control.ppt
 
unit5 Enterprise Resource Planning new trends.ppt
unit5 Enterprise Resource Planning new trends.pptunit5 Enterprise Resource Planning new trends.ppt
unit5 Enterprise Resource Planning new trends.ppt
 
science engineering and technology .pptx
science engineering and technology .pptxscience engineering and technology .pptx
science engineering and technology .pptx
 
policies in economics trends for engineers
policies in economics trends for engineerspolicies in economics trends for engineers
policies in economics trends for engineers
 
Product Decisions and its aplication in global world
Product Decisions and its aplication in global worldProduct Decisions and its aplication in global world
Product Decisions and its aplication in global world
 
Database management system basics and it applications
Database management system basics and it applicationsDatabase management system basics and it applications
Database management system basics and it applications
 
Computer Animation.pptx
Computer Animation.pptxComputer Animation.pptx
Computer Animation.pptx
 
IOT in agriculture.pptx
IOT in agriculture.pptxIOT in agriculture.pptx
IOT in agriculture.pptx
 
18copy.pptx
18copy.pptx18copy.pptx
18copy.pptx
 
ERP unit 1.ppt
ERP unit 1.pptERP unit 1.ppt
ERP unit 1.ppt
 
fiscalpolicy.ppt
fiscalpolicy.pptfiscalpolicy.ppt
fiscalpolicy.ppt
 
CASE Tools lab.ppt
CASE Tools lab.pptCASE Tools lab.ppt
CASE Tools lab.ppt
 
DAA ppt.pptx
DAA ppt.pptxDAA ppt.pptx
DAA ppt.pptx
 
DAA 1 ppt.pptx
DAA 1 ppt.pptxDAA 1 ppt.pptx
DAA 1 ppt.pptx
 
ARITHMETIC LOGIC UNIT.ppt
ARITHMETIC LOGIC UNIT.pptARITHMETIC LOGIC UNIT.ppt
ARITHMETIC LOGIC UNIT.ppt
 
Virtual memory translation.pptx
Virtual memory translation.pptxVirtual memory translation.pptx
Virtual memory translation.pptx
 
Common memory technologies.pptx
Common memory technologies.pptxCommon memory technologies.pptx
Common memory technologies.pptx
 
Components of Computer system.ppt
Components of Computer system.pptComponents of Computer system.ppt
Components of Computer system.ppt
 

Recently uploaded

VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130Suhani Kapoor
 
3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdf3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdfSwaraliBorhade
 
Cheap Rate Call girls Malviya Nagar 9205541914 shot 1500 night
Cheap Rate Call girls Malviya Nagar 9205541914 shot 1500 nightCheap Rate Call girls Malviya Nagar 9205541914 shot 1500 night
Cheap Rate Call girls Malviya Nagar 9205541914 shot 1500 nightDelhi Call girls
 
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...Yantram Animation Studio Corporation
 
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130  Available With RoomVIP Kolkata Call Girl Gariahat 👉 8250192130  Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Roomdivyansh0kumar0
 
Raj Nagar Extension Call Girls 9711199012 WhatsApp No, Delhi Escorts in Raj N...
Raj Nagar Extension Call Girls 9711199012 WhatsApp No, Delhi Escorts in Raj N...Raj Nagar Extension Call Girls 9711199012 WhatsApp No, Delhi Escorts in Raj N...
Raj Nagar Extension Call Girls 9711199012 WhatsApp No, Delhi Escorts in Raj N...ankitnayak356677
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...Call Girls in Nagpur High Profile
 
Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`
Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`
Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`dajasot375
 
A level Digipak development Presentation
A level Digipak development PresentationA level Digipak development Presentation
A level Digipak development Presentationamedia6
 
NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...
NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...
NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...Amil baba
 
call girls in Harsh Vihar (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Harsh Vihar (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Harsh Vihar (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Harsh Vihar (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
WAEC Carpentry and Joinery Past Questions
WAEC Carpentry and Joinery Past QuestionsWAEC Carpentry and Joinery Past Questions
WAEC Carpentry and Joinery Past QuestionsCharles Obaleagbon
 
Design Portfolio - 2024 - William Vickery
Design Portfolio - 2024 - William VickeryDesign Portfolio - 2024 - William Vickery
Design Portfolio - 2024 - William VickeryWilliamVickery6
 
Cosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable BricksCosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable Bricksabhishekparmar618
 
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service AmravatiVIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service AmravatiSuhani Kapoor
 
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...Suhani Kapoor
 
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130Suhani Kapoor
 
The history of music videos a level presentation
The history of music videos a level presentationThe history of music videos a level presentation
The history of music videos a level presentationamedia6
 

Recently uploaded (20)

VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
 
3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdf3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdf
 
Cheap Rate Call girls Malviya Nagar 9205541914 shot 1500 night
Cheap Rate Call girls Malviya Nagar 9205541914 shot 1500 nightCheap Rate Call girls Malviya Nagar 9205541914 shot 1500 night
Cheap Rate Call girls Malviya Nagar 9205541914 shot 1500 night
 
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
 
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130  Available With RoomVIP Kolkata Call Girl Gariahat 👉 8250192130  Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Room
 
Raj Nagar Extension Call Girls 9711199012 WhatsApp No, Delhi Escorts in Raj N...
Raj Nagar Extension Call Girls 9711199012 WhatsApp No, Delhi Escorts in Raj N...Raj Nagar Extension Call Girls 9711199012 WhatsApp No, Delhi Escorts in Raj N...
Raj Nagar Extension Call Girls 9711199012 WhatsApp No, Delhi Escorts in Raj N...
 
Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance VVIP 🍎 SER...
Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance  VVIP 🍎 SER...Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance  VVIP 🍎 SER...
Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance VVIP 🍎 SER...
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
 
Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`
Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`
Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`
 
A level Digipak development Presentation
A level Digipak development PresentationA level Digipak development Presentation
A level Digipak development Presentation
 
NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...
NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...
NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...
 
call girls in Harsh Vihar (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Harsh Vihar (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Harsh Vihar (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Harsh Vihar (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
WAEC Carpentry and Joinery Past Questions
WAEC Carpentry and Joinery Past QuestionsWAEC Carpentry and Joinery Past Questions
WAEC Carpentry and Joinery Past Questions
 
Design Portfolio - 2024 - William Vickery
Design Portfolio - 2024 - William VickeryDesign Portfolio - 2024 - William Vickery
Design Portfolio - 2024 - William Vickery
 
Cosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable BricksCosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable Bricks
 
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service AmravatiVIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
 
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
 
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
 
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
 
The history of music videos a level presentation
The history of music videos a level presentationThe history of music videos a level presentation
The history of music videos a level presentation
 

OOSDLC.pptx

  • 2. Introduction ●The essence of the software development process that consists of analysis, design, implementation, testing, and refinement is to transform user’s needs into a software solution that satisfies those needs. SahajComputer Solutions Object Oriented Systems Development 2
  • 3. Introduction ● The object oriented approach requires a more rigorous process to do things right. ● You need not see code until after about 25 percent of the development time, because you need to spend more time in gathering requirements, developing a requirement model and an analysis model, then turning them into the design model. SahajComputer Solutions Object Oriented Systems Development 3
  • 4. The software development process SahajComputer Solutions Object Oriented Systems Development 4
  • 5. The software development process ● The software development process can be divided into smaller ,interacting sub processes. ● Generally software development can be seen as aseries of transformations, where the output of one transformation becomes the input of the subsequent transformation. SahajComputer Solutions Object Oriented Systems Development 5
  • 6. The software development process ● Transformation1(Analysis): ◦ Translates the user’s needs into system requirements and responsibilities. ◦ The way they use the system can provide insight into the user’s requirements. SahajComputer Solutions Object Oriented Systems Development 6
  • 7. The software development process ● Transformation 2 (design): ◦ This transformation includes the bulk of the software development activity, including the definition of how to build the software, its development, and its testing. SahajComputer Solutions Object Oriented Systems Development 7
  • 8. The software development process ● Transformation 3(Implementation) ◦ refines the detailed design into the system deployment that will satisfy the user’s needs. ◦ This takes into account equipment, procedures, people, and thelike. ◦ . SahajComputer Solutions Object Oriented Systems Development 8
  • 9. Waterfall Model ● An example of the software development process is the waterfall approach which starts with deciding what has to be done. ● Once the requirements havebeen determined, we next must decide how to accomplish them. ● This is followed by astep in which we do it, whatever it has required us to do. ● We then must test the result to see if we havesatisfied the user’s requirements. ● Finally we use the what we have done. SahajComputer Solutions Object Oriented Systems Development 9
  • 10. Waterfall Model SahajComputer Solutions Object Oriented Systems Development 10
  • 11. BUILDING HIGH-QUALITY SOFTWARE ● High-quality products must meet users' needs and expectations. ● Furthermore, the products should attain this with minimal or no defects, the focus being on improving products (or services) prior to delivery rather than correcting them after delivery. SahajComputer Solutions Object Oriented Systems Development 11
  • 12. BUILDING HIGH-QUALITY SOFTWARE ● Blum describes ameans of system evaluation in terms of four quality measures: ● correspondence, ● correctness, ● verification, and ● validation. SahajComputer Solutions Object Oriented Systems Development 12
  • 13. BUILDING HIGH-QUALITY SOFTWARE ● Validation begins as soon as the project starts, but verification can begin only after aspecification has been accepted. ● Verification and validation are independent of each other . ● It is possible to haveaproduct that corresponds to the specification, but if the specification proves to be incorrect, we do not havethe right product; SahajComputer Solutions Object Oriented Systems Development 13
  • 14. Object-Oriented Systems Development:A use case driven approach ● The object oriented software development lifecycle(SDLC) consists of three macro processes: ◦ Object-oriented analysis ◦ Object-oriented design ◦ Object-oriented implementation SahajComputer Solutions Object Oriented Systems Development 14
  • 15. Object-Oriented Systems Development:A use case driven approach SahajComputer Solutions Object Oriented Systems Development 15
  • 16. Object-Oriented Systems Development:A use case driven approach ● The use case model can be employed throughout most activities of software development. ● Furthermore, by following the lifecycle model of Jacobson ,Ericsson and Jacobson, one can produce designs that are traceable across requirements, analysis, design, implementation, and testing. SahajComputer Solutions Object Oriented Systems Development 16
  • 17. Object-Oriented Systems Development:A use case driven approach SahajComputer Solutions Object Oriented Systems Development 17
  • 18. Object-Oriented Systems Development: A use case driven approach ● The main advantage is that alldesign decisions can be tracked back directly to user requirements. ● Use case scenarios can become test scenarios. SahajComputer Solutions Object Oriented Systems Development 18
  • 19. Object-Oriented Systems Development: A use case driven approach ● Object oriented systems development includes these activities: ◦ Object-oriented analysis- Use case driven ◦ Object oriented design ◦ Prototyping ◦ Component-based development ◦ Incremental testing SahajComputer Solutions Object Oriented Systems Development 19
  • 20. Object oriented Analysis- Use case Driven ● The object oriented analysis phase of software development is concerned with determining the system requirements and identifying classes and their relationship to other classes in the problem domain. ● To understand the system requirements, we need to identify the users or the actors. ● Who are the actors and how do they use the system? SahajComputer Solutions Object Oriented Systems Development 20
  • 21. Object oriented Analysis- Use case Driven ● Ivar Jacobson came up with the concept of use case, his name for ascenario to describe the user- computer system interaction. ● This concept worked so well that it became the primary element in the system development. ● The object-oriented community has adopted use cases to aremarkable degree. SahajComputer Solutions Object Oriented Systems Development 21
  • 22. Object oriented Analysis- Use case Driven ● Scenarios are a great way of examining who does what in the interactions among objects and what role they play;i.e.,their interrelationships. ● This intersection among object’s roles to achieve agiven goal is called collaboration. ● A use case is atypical interaction between auser and system that captures user’s goals and needs. SahajComputer Solutions Object Oriented Systems Development 22
  • 23. Object oriented Analysis- Use case Driven ● Expressing these high-level processes and interactions with customers in a scenario and analyzing it is referred to as use case modeling. ● The use case model represents the user’s view of the system or user’s needs. SahajComputer Solutions Object Oriented Systems Development 23
  • 24. Object oriented Analysis- Use case Driven ● This process of developing use cases, like other object-oriented activities, is iterative—once your use-case model is better understood and developed you should start to identify classes and create their relationships SahajComputer Solutions Object Oriented Systems Development 24
  • 25. Object oriented Analysis- Use case Driven ● Documentation is another important activity , which does not end with object-oriented analysis but should be carried out throughout the system development. ● Make the document as short as possible. ● The 80-20 rule generally applies for documentation: 80 % of the work can be done with 20% of documentation. ● Documentation and modeling are not separate activities, and good modeling implies good documentation. SahajComputer Solutions Object Oriented Systems Development 25
  • 26. Object-Oriented Design ● The goal of object-oriented design (OOD) is to design the classes identified during the analysis phase and the user interface. ● During this phase, we identify and define additional objects and classes that support implementation of the requirements. ● For example, during the design phase,you might need to add objects for the user interface to the system (e.g.,dataentry windows, browse windows). SahajComputer Solutions Object Oriented Systems Development 26
  • 27. Object-Oriented Design ● Object-oriented design and object- oriented analysis are distinct disciplines, but they can be intertwined. ● Object-oriented development is highly incremental; in other words, you start with object-oriented analysis, model it, create an object-oriented design, then do some more of each,againand again, gradually refining and completing models of the system: SahajComputer Solutions Object Oriented Systems Development 27
  • 28. Object-Oriented Design ● First, build the object model based on objects and their relationships, then iterate and refine the model: ◦ Design and refine classes. ◦ Design and refine attributes. ◦ Design and refine methods. ◦ Design and refine structures. ◦ Design and refine associations. SahajComputer Solutions Object Oriented Systems Development 28
  • 29. Object-Oriented Design ● Here are afewguidelines to use in your object-oriented design: ◦ Reuse, rather than build,anew class.Know the existing classes. ◦ Design alarge number of simple classes, rather than asmall number of complex classes. ◦ Design methods. ◦ Critique what you haveproposed. Ifpossible, go back and refine the classes. SahajComputer Solutions Object Oriented Systems Development 29
  • 30. Prototyping ● Although the object-oriented analysis and design describe the system features, it is important to construct aprototype of some of the key system components shortly after the products are selected. ● It has been said "a picture may be worth a thousand words, but a prototype is worth athousand pictures" [author unknown]. SahajComputer Solutions Object Oriented Systems Development 30
  • 31. Prototyping ● Essentially,prototype is aversion of a software product developed in the early stages of the product’s lifecycle for specific, experimental purposes. ● A prototype enables you understand how easy or difficult it will be to implement some of the features of the system. ● It also can give users achance to comment on the usability and usefulness of the user interface design and lets you assess the fit between the software tools selected, the functional specification, and the user needs. SahajComputer Solutions Object Oriented Systems Development 31
  • 32. Prototyping ● Prototyping can further define the use cases, and it actuallymakes use-case modeling much easier . ● Traditionally,prototyping was used as a "quick and dirty" way to test the design, user interface, and so forth, something to be thrown awaywhen the "industrial strength" version was developed. ● However , the new trend, such as using rapid application development, is to refine the prototype into the final product. SahajComputer Solutions Object Oriented Systems Development 32
  • 33. Prototyping ● Prototypes have been categorized in various ways: ◦ A horizontal prototype is a simulation of the interface (that is, it has the entire user interface that will be in the full-featured system) but contains no functionality. ◦ This has the advantages of being very quick to implement, providing a good overall feel of the system, and allowing users to evaluate the interface on the basis of their normal, expected perception of the system. SahajComputer Solutions Object Oriented Systems Development 33
  • 34. Prototyping ◦ A vertical prototype is a subset of the system features with complete functionality. ◦ The principal advantage of this method is that the few implemented functions can be tested in great depth. ◦ In practice, prototypes are ahybrid between horizontal and vertical. ◦ The major portions of the interface are established so the user can get the feelof the system, and features having ahigh degree of risk are prototyped with much more functionality SahajComputer Solutions Object Oriented Systems Development 34
  • 35. Prototyping ◦ An analysis prototype is an aid for exploring the problem domain. ◦ This class of prototype is used to inform, the user and demonstrate the proof of aconcept. ◦ It is not used as the basis of development, however , and is discarded when it has served its purpose. ◦ The finalproduct will use the concepts exposed by the prototype, not its code. SahajComputer Solutions Object Oriented Systems Development 35
  • 36. Prototyping ◦ A domain prototype is anaid for the incremental development of the ultimate software solution. ◦ It often is used as atool for the staged delivery of subsystems to the users or other members of the development team. ◦ It demonstrates the feasibility of the implementation and eventually will evolve into adeliverableproduct. SahajComputer Solutions Object Oriented Systems Development 36
  • 37. Implement: Component Based Development ● Manufacturers learned that benefits of moving from custom development to assembly from prefabricated components. ● Components based manufacturing makes many products availableto the market place that otherwise would be expensive. ● Modern manufacturing has evolved to exploit two crucial factors underlying today’s market requirements: reduce cost and time to market by building from prebuilt, ready- tested components. SahajComputer Solutions Object Oriented Systems Development 37
  • 38. Component based development ● T oday’software components are built and tested in-house, using awide range of technologies like CASE TOOLS that allows ● Component-based development (CBD) is an industrialized approach to the software development process. ● Application development moves from custom development to assembly of prebuilt, pretested, reusable software components that operate with each other . SahajComputer Solutions Object Oriented Systems Development 38
  • 39. Component based development ● Two basic ideas underlie component- based development. ● First, the application development can be improved significantly ifapplications can be assembled quickly from prefabricated software components. ● Second, an increasingly large collection of interpretable software components could be made available to developers in both general and specialist catalogs. SahajComputer Solutions Object Oriented Systems Development 39
  • 40. Component based development ● A CBD developer can assemble components to construct acomplete software system. ● Components themselves maybe constructed from other components and so on down to the level of prebuilt components or old-fashioned code written in alanguage such as C, assembler, or COBOL. SahajComputer Solutions Object Oriented Systems Development 40
  • 41. Rapid application development ● Rapid application development (RAD) is aset of tools and techniques that can be used to build an application faster than typically possible with traditional methods. ● The term often is used in conjunction with software prototyping . ● It is widely held that,to achieve,RAD, the developer sacrifices the quality of the product for aquickerdelivery. SahajComputer Solutions Object Oriented Systems Development 41
  • 42. Rapid application development ● This is not necessarily the case. RAD is concerned primarily with reducing the "time to market," not exclusively the software development time. ● In fact,one successful RAD application achieved asubstantial reduction in time to market but realized no significant reduction in the individual software cycles SahajComputer Solutions Object Oriented Systems Development 42
  • 43. Rapid application development ● RAD does not replace the system development lifecycle (see the Real-World case) but complements it,since it focuses more on process description and can be combined perfectly with the object-oriented approach. ● The task of RAD is to build the application quickly and incrementally implement the design and user requirements, through tools such as Delphi,VisualAge,Visual Basic, or PowerBuilder. SahajComputer Solutions Object Oriented Systems Development 43
  • 44. IncrementalTesting ● That's what happened atBankers Trust in 1992: "Our testing was very completeand good, but it was costing alot of money and would add months onto aproject," says Glenn Shimamoto, vice president of technology and strategic planning atthe New Yorkbank. SahajComputer Solutions Object Oriented Systems Development 44
  • 45. IncrementalTesting ● In one case,testing added nearly six months to the development of afunds transfer application. ● The problem was that developers would turn over applications to aquality assurance (QA) group for testing only after development was completed. ● Since the QA group wasn't included in the initial plan,it had no clear picture of the system characteristics until it came time to test. SahajComputer Solutions Object Oriented Systems Development 45
  • 46. REUSABILITY ● A major benefit of object-oriented system development is reusability,and this is the most difficult promise to deliver on. ● For an object to be really reusable, much more effort must be spent designing it. ● To deliver areusable object,the development teammust havethe up-front time to design reusability into the object. ● The potential benefits of reuse are clear: increased reliability , reduced time and cost for development, and improved consistency SahajComputer Solutions Object Oriented Systems Development 46
  • 47. REUSABILITY ● The reuse strategy can be based on the following: ◦ Information hiding (encapsulation). ◦ Conformance to naming standards. ◦ Creation and administration of an object repository. ◦ Encouragement by strategic management of reuse as opposed to constant redevelopment. ◦ Establishing targets for a percentage of the objects in the project to be reused (i.e., 50 percent reuse of objects). SahajComputer Solutions Object Oriented Systems Development 47