SlideShare uma empresa Scribd logo
1 de 22
Software Design
Design and programming are human activities;
forget that and all is lost.
—Bjarne Stroustrup
Overview
● Basic Concept of Software Design
● Architectural Design
● Modularization
● Design Structure Chart
● Pseudo Codes
● Flow Charts
● Coupling and Cohesion
Basic Concept of Software Design
What is Software Design?
Software design is a process to transform user requirements into some
suitable form, which helps the programmer in software coding and
implementation.
For assessing user requirements, an SRS (Software Requirement
Specification) document is created whereas for coding and
implementation, there is a need of more specific and detailed
requirements in software terms. The output of this process can directly
be used into implementation in programming languages.
Software design is the first step in SDLC (Software Design Life Cycle),
which moves the concentration from problem domain to solution
domain. It tries to specify how to fulfill the requirements mentioned in
SRS.
Programmer’s Approach to
Software Engineering
Skip requirements engineering and design
phases;
start writing code
Why this programmer’s approach?
1. Design is a waste of time
2. We need to show something to the customer
real quick
3. We are judged by the amount of LOC/month
4. We expect or know that the schedule is too tight
However, ...
The longer you postpone coding, the sooner you’ll
be finished
Architectural Design
“The overall structure of the software and the ways in which that
structure provides conceptual integrity for a system.”
Design can be represented as
 Structural Models
 Defines the components of a system (e.g., modules, objects, filters) and
 How the components are packaged and interact with one another.
 Framework Models
 Increase level of abstraction
 Dynamic Models and Process Models
 Predicts behavioral and reliability aspects
 Functional Models
 Depicts functional Hierarchy.
Modularization
Modularization is a technique to divide a software system into
multiple discrete and independent modules, which are expected
to be capable of carrying out task(s) independently. These
modules may work as basic constructs for the entire software.
Designers tend to design modules such that they can be
executed and/or compiled separately and independently.
Modular design unintentionally follows the rules of ‘divide and conquer’
problem-solving strategy this is because there are many other benefits
attached with the modular design of a software.
Modular Design
 Easier to change
 Easier to build
 Easier to maintain
Advantage of modularization:
● Smaller components are easier to maintain
● Program can be divided based on functional aspects
● Desired level of abstraction can be brought in the program
● Components with high cohesion can be re-used again
● Concurrent execution can be made possible
● Desired from security aspect
Design Structure Charts
Structure charts are used for procedural
programs. They illustrate structure and
information about a program in a visual format.
● Partition program into named modules
● Top-down hierarchy of modules
● Links between modules
● Flow of data, control or exceptions
“Structured Charts are an example of a top-down
design where a problem (the program) is broken into its
components. The tree shows the relationship between
modules, showing data transfer between the models.”
Pseudo Code and Flow Chart
● Pseudocode (pronounced SOO-doh-kohd) is a detailed
yet readable description of what a computer program or
algorithm must do, expressed in a formally-styled natural
language rather than in a programming language.
● A flowchart is a type of diagram that represents an
algorithm, workflow or process, showing the steps as
boxes of various kinds, and their order by connecting
them with arrows. This diagrammatic representation
illustrates a solution model to a given problem.
More about Pseudo Code and Flow
Charts.........
DIY(Do It
Yourself).................................................................
................................................................................
...........................................
Coupling and Cohesion
When a software program is modularized, its tasks are
divided into several modules based on some
characteristics. As we know, modules are set of
instructions put together in order to achieve some
tasks. They are though, considered as single entity but
may refer to each other to work together. There are
measures by which the quality of a design of modules
and their interaction among them can be measured.
These measures are called coupling and cohesion.
Cohesion
Cohesion is a measure that defines the degree of intra-dependability within elements of a
module. The greater the cohesion, the better is the program design.
There are seven types of cohesion, namely –
●
Logical cohesion - When logically categorized elements are put together into a module, it is
called logical cohesion.
●
Temporal Cohesion - When elements of module are organized such that they are processed at
a similar point in time, it is called temporal cohesion.
●
Procedural cohesion - When elements of module are grouped together, which are executed
sequentially in order to perform a task, it is called procedural cohesion.
●
Communicational cohesion - When elements of module are grouped together, which are
executed sequentially and work on same data (information), it is called communicational
cohesion.
●
Sequential cohesion - When elements of module are grouped because the output of one
element serves as input to another and so on, it is called sequential cohesion.
●
Functional cohesion - It is considered to be the highest degree of cohesion, and it is highly
expected. Elements of module in functional cohesion are grouped because they all contribute to
a single well-defined function. It can also be reused.
Range of Cohesion
Functional
Sequential
Communicational
Procedural
Temporal
Logical
Coincidental
High Cohesion
Low
Examples of Cohesion-1
Function
B
Function
D
Function
D
Function
E
Coincidental
Parts unrelated
Function
C
Function A Function A
Function A’
Function A’’
Logical
Similar functions
Temporal
Related by time
Time t0
Time t0 + X
Time t0 + 2X
Function A
Function B
Function C
Procedural
Related by order of functions
Examples of Cohesion-2
Function A part 1
Function A part 2
Function A part 3
Functional
Sequential with complete, related functions
Function A
Function B
Function C
Communicational
Access same data
Function A
Function B
Function C
Sequential
Output of one is input to another
Coupling
Coupling is a measure that defines the level of inter-dependability among
modules of a program. It tells at what level the modules interfere and
interact with each other. The lower the coupling, the better the program.
There are five levels of coupling, namely -
●
Content coupling - When a module can directly access or modify or refer
to the content of another module, it is called content level coupling.
●
Common coupling- When multiple modules have read and write access to
some global data, it is called common or global coupling.
● Control coupling- Two modules are called control-coupled if one of them
decides the function of the other module or changes its flow of execution.
●
Stamp coupling- When multiple modules share common data structure
and work on different part of it, it is called stamp coupling.
● Data coupling- Data coupling is when two modules interact with each other
by means of passing data (as parameter). If a module passes data structure
as parameter, then the receiving module should use all its components.
Ideally, no coupling is considered to be the best.
Range of Coupling
Content
Common
External
Control
Stamp
Data
Uncoupled
Content
Common
External
Control
Stamp
Data
Uncoupled
Content
Common
External
Control
Stamp
Data
Uncoupled
High Coupling
Loose
Low
Now we continue with Design Strategies in next
presentation......
Thanku!!!!!

Mais conteúdo relacionado

Mais procurados

07 software design
07   software design07   software design
07 software design
kebsterz
 
Software design principles
Software design principlesSoftware design principles
Software design principles
Ritesh Singh
 
Chapter 4 software design
Chapter 4  software designChapter 4  software design
Chapter 4 software design
Cliftone Mullah
 

Mais procurados (20)

Hld lld
Hld lldHld lld
Hld lld
 
Software design
Software designSoftware design
Software design
 
Function Oriented and Object Oriented Design,Modularization techniques
Function Oriented and Object Oriented Design,Modularization techniquesFunction Oriented and Object Oriented Design,Modularization techniques
Function Oriented and Object Oriented Design,Modularization techniques
 
Design Principles
Design PrinciplesDesign Principles
Design Principles
 
07 software design
07   software design07   software design
07 software design
 
unit 3 Design 1
unit 3 Design 1unit 3 Design 1
unit 3 Design 1
 
Software design principles
Software design principlesSoftware design principles
Software design principles
 
Software Designing - Software Engineering
Software Designing - Software EngineeringSoftware Designing - Software Engineering
Software Designing - Software Engineering
 
5 software design
5 software design5 software design
5 software design
 
Design Concept software engineering
Design Concept software engineeringDesign Concept software engineering
Design Concept software engineering
 
SWE-401 - 12. Software CASE Tools Overview
SWE-401 - 12. Software CASE Tools OverviewSWE-401 - 12. Software CASE Tools Overview
SWE-401 - 12. Software CASE Tools Overview
 
Chapter 4 software design
Chapter 4  software designChapter 4  software design
Chapter 4 software design
 
Software design
Software designSoftware design
Software design
 
Software Engineering
Software EngineeringSoftware Engineering
Software Engineering
 
SWE-401 - 7. Software Design Strategies
SWE-401 - 7. Software Design StrategiesSWE-401 - 7. Software Design Strategies
SWE-401 - 7. Software Design Strategies
 
Design techniques
Design techniquesDesign techniques
Design techniques
 
Software design presentation
Software design presentationSoftware design presentation
Software design presentation
 
Design concepts and design principles
Design concepts and design principlesDesign concepts and design principles
Design concepts and design principles
 
Design engineering
Design engineeringDesign engineering
Design engineering
 
Design concepts and principle,
Design concepts and principle, Design concepts and principle,
Design concepts and principle,
 

Semelhante a Software design

Software engg. pressman_ch-9
Software engg. pressman_ch-9Software engg. pressman_ch-9
Software engg. pressman_ch-9
Dhairya Joshi
 

Semelhante a Software design (20)

06 fse design
06 fse design06 fse design
06 fse design
 
CS8494 SOFTWARE ENGINEERING Unit-3
CS8494 SOFTWARE ENGINEERING Unit-3CS8494 SOFTWARE ENGINEERING Unit-3
CS8494 SOFTWARE ENGINEERING Unit-3
 
Introduction to problem solving in C
Introduction to problem solving in CIntroduction to problem solving in C
Introduction to problem solving in C
 
Software engineering
Software engineeringSoftware engineering
Software engineering
 
rEFUP.pdf
rEFUP.pdfrEFUP.pdf
rEFUP.pdf
 
UNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvf
UNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvfUNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvf
UNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvf
 
Chapter five software Software Design.pptx
Chapter five software  Software Design.pptxChapter five software  Software Design.pptx
Chapter five software Software Design.pptx
 
Chapter 5 Software Design of software engineering.pptx
Chapter 5 Software Design of software engineering.pptxChapter 5 Software Design of software engineering.pptx
Chapter 5 Software Design of software engineering.pptx
 
Software design
Software designSoftware design
Software design
 
Software design
Software designSoftware design
Software design
 
Software engg. pressman_ch-9
Software engg. pressman_ch-9Software engg. pressman_ch-9
Software engg. pressman_ch-9
 
SE UNIT-3.pdf
SE UNIT-3.pdfSE UNIT-3.pdf
SE UNIT-3.pdf
 
Software design i (2) (1)
Software design   i (2) (1)Software design   i (2) (1)
Software design i (2) (1)
 
software design: design fundamentals.pptx
software design: design fundamentals.pptxsoftware design: design fundamentals.pptx
software design: design fundamentals.pptx
 
Software Engineering (Short & Long Questions)
Software Engineering (Short & Long Questions)Software Engineering (Short & Long Questions)
Software Engineering (Short & Long Questions)
 
Software Engineering Solved Past Paper 2020
Software Engineering Solved Past Paper 2020 Software Engineering Solved Past Paper 2020
Software Engineering Solved Past Paper 2020
 
Lecture1422914635
Lecture1422914635Lecture1422914635
Lecture1422914635
 
Software engg unit 3
Software engg unit 3 Software engg unit 3
Software engg unit 3
 
SMD.pptx
SMD.pptxSMD.pptx
SMD.pptx
 
Elementary Probability theory Chapter 2.pptx
Elementary Probability theory Chapter 2.pptxElementary Probability theory Chapter 2.pptx
Elementary Probability theory Chapter 2.pptx
 

Mais de Himanshu Awasthi (9)

RoadMap to Cyber Certs.pdf
RoadMap to Cyber Certs.pdfRoadMap to Cyber Certs.pdf
RoadMap to Cyber Certs.pdf
 
Introduction to web design
Introduction to web designIntroduction to web design
Introduction to web design
 
Data analysis using python
Data analysis using pythonData analysis using python
Data analysis using python
 
Kanpur Python Users Group
Kanpur Python Users GroupKanpur Python Users Group
Kanpur Python Users Group
 
Python basics
Python basicsPython basics
Python basics
 
Crpto unit1
Crpto unit1Crpto unit1
Crpto unit1
 
Intro to python
Intro to pythonIntro to python
Intro to python
 
Software unit4
Software unit4Software unit4
Software unit4
 
DomainNameSystem
DomainNameSystemDomainNameSystem
DomainNameSystem
 

Último

1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
PECB
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.
MateoGardella
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
SanaAli374401
 

Último (20)

1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 

Software design

  • 1. Software Design Design and programming are human activities; forget that and all is lost. —Bjarne Stroustrup
  • 2. Overview ● Basic Concept of Software Design ● Architectural Design ● Modularization ● Design Structure Chart ● Pseudo Codes ● Flow Charts ● Coupling and Cohesion
  • 3. Basic Concept of Software Design What is Software Design? Software design is a process to transform user requirements into some suitable form, which helps the programmer in software coding and implementation. For assessing user requirements, an SRS (Software Requirement Specification) document is created whereas for coding and implementation, there is a need of more specific and detailed requirements in software terms. The output of this process can directly be used into implementation in programming languages. Software design is the first step in SDLC (Software Design Life Cycle), which moves the concentration from problem domain to solution domain. It tries to specify how to fulfill the requirements mentioned in SRS.
  • 4. Programmer’s Approach to Software Engineering Skip requirements engineering and design phases; start writing code
  • 5. Why this programmer’s approach? 1. Design is a waste of time 2. We need to show something to the customer real quick 3. We are judged by the amount of LOC/month 4. We expect or know that the schedule is too tight
  • 6. However, ... The longer you postpone coding, the sooner you’ll be finished
  • 7. Architectural Design “The overall structure of the software and the ways in which that structure provides conceptual integrity for a system.” Design can be represented as  Structural Models  Defines the components of a system (e.g., modules, objects, filters) and  How the components are packaged and interact with one another.  Framework Models  Increase level of abstraction  Dynamic Models and Process Models  Predicts behavioral and reliability aspects  Functional Models  Depicts functional Hierarchy.
  • 8. Modularization Modularization is a technique to divide a software system into multiple discrete and independent modules, which are expected to be capable of carrying out task(s) independently. These modules may work as basic constructs for the entire software. Designers tend to design modules such that they can be executed and/or compiled separately and independently. Modular design unintentionally follows the rules of ‘divide and conquer’ problem-solving strategy this is because there are many other benefits attached with the modular design of a software.
  • 9. Modular Design  Easier to change  Easier to build  Easier to maintain
  • 10. Advantage of modularization: ● Smaller components are easier to maintain ● Program can be divided based on functional aspects ● Desired level of abstraction can be brought in the program ● Components with high cohesion can be re-used again ● Concurrent execution can be made possible ● Desired from security aspect
  • 11. Design Structure Charts Structure charts are used for procedural programs. They illustrate structure and information about a program in a visual format. ● Partition program into named modules ● Top-down hierarchy of modules ● Links between modules ● Flow of data, control or exceptions
  • 12. “Structured Charts are an example of a top-down design where a problem (the program) is broken into its components. The tree shows the relationship between modules, showing data transfer between the models.”
  • 13. Pseudo Code and Flow Chart ● Pseudocode (pronounced SOO-doh-kohd) is a detailed yet readable description of what a computer program or algorithm must do, expressed in a formally-styled natural language rather than in a programming language. ● A flowchart is a type of diagram that represents an algorithm, workflow or process, showing the steps as boxes of various kinds, and their order by connecting them with arrows. This diagrammatic representation illustrates a solution model to a given problem.
  • 14. More about Pseudo Code and Flow Charts......... DIY(Do It Yourself)................................................................. ................................................................................ ...........................................
  • 15. Coupling and Cohesion When a software program is modularized, its tasks are divided into several modules based on some characteristics. As we know, modules are set of instructions put together in order to achieve some tasks. They are though, considered as single entity but may refer to each other to work together. There are measures by which the quality of a design of modules and their interaction among them can be measured. These measures are called coupling and cohesion.
  • 16. Cohesion Cohesion is a measure that defines the degree of intra-dependability within elements of a module. The greater the cohesion, the better is the program design. There are seven types of cohesion, namely – ● Logical cohesion - When logically categorized elements are put together into a module, it is called logical cohesion. ● Temporal Cohesion - When elements of module are organized such that they are processed at a similar point in time, it is called temporal cohesion. ● Procedural cohesion - When elements of module are grouped together, which are executed sequentially in order to perform a task, it is called procedural cohesion. ● Communicational cohesion - When elements of module are grouped together, which are executed sequentially and work on same data (information), it is called communicational cohesion. ● Sequential cohesion - When elements of module are grouped because the output of one element serves as input to another and so on, it is called sequential cohesion. ● Functional cohesion - It is considered to be the highest degree of cohesion, and it is highly expected. Elements of module in functional cohesion are grouped because they all contribute to a single well-defined function. It can also be reused.
  • 18. Examples of Cohesion-1 Function B Function D Function D Function E Coincidental Parts unrelated Function C Function A Function A Function A’ Function A’’ Logical Similar functions Temporal Related by time Time t0 Time t0 + X Time t0 + 2X Function A Function B Function C Procedural Related by order of functions
  • 19. Examples of Cohesion-2 Function A part 1 Function A part 2 Function A part 3 Functional Sequential with complete, related functions Function A Function B Function C Communicational Access same data Function A Function B Function C Sequential Output of one is input to another
  • 20. Coupling Coupling is a measure that defines the level of inter-dependability among modules of a program. It tells at what level the modules interfere and interact with each other. The lower the coupling, the better the program. There are five levels of coupling, namely - ● Content coupling - When a module can directly access or modify or refer to the content of another module, it is called content level coupling. ● Common coupling- When multiple modules have read and write access to some global data, it is called common or global coupling. ● Control coupling- Two modules are called control-coupled if one of them decides the function of the other module or changes its flow of execution. ● Stamp coupling- When multiple modules share common data structure and work on different part of it, it is called stamp coupling. ● Data coupling- Data coupling is when two modules interact with each other by means of passing data (as parameter). If a module passes data structure as parameter, then the receiving module should use all its components. Ideally, no coupling is considered to be the best.
  • 22. Now we continue with Design Strategies in next presentation...... Thanku!!!!!