SlideShare a Scribd company logo
1 of 40
Software Design
• Software design is a mechanism to transform
user requirements into some suitable form,
which helps the programmer in software
coding and implementation. It deals with
representing the client's requirement, as
described in SRS (Software Requirement
Specification) document, into a form, i.e.,
easily implementable using programming
language.
The software design phase is the first
step in SDLC (Software Design Life Cycle),
which moves the concentration from the
problem domain to the solution domain. In
software design, we consider the system to
be a set of components or modules with
clearly defined behaviors & boundaries.
•Objectives of Software Design:-
Following are the purposes of Software design:
1. Correctness: Software design should be correct as
per requirement.
2. Completeness: The design should have all
components like data structures, modules, and
external interfaces, etc.
3. Efficiency: Resources should be used efficiently by
the program.
4. Flexibility: Able to modify on changing needs.
5. Consistency: There should not be any inconsistency
in the design.
6. Maintainability: The design should be so simple so
that it can be easily maintainable by other designers.
Software Design Principles
• Software design principles are concerned with
providing means to handle the complexity of
the design process effectively. Effectively
managing the complexity will not only reduce
the effort needed for design but can also
reduce the scope of introducing errors during
design.
Following are the principles of Software Design:
1. Problem Partitioning
• For small problem, we can handle the entire
problem at once but for the significant
problem, divide the problems and conquer
the problem it means to divide the problem
into smaller pieces so that each piece can be
captured separately.
• For software design, the goal is to divide the
problem into manageable pieces.
Benefits of Problem Partitioning
1. Software is easy to understand
2. Software becomes simple
3. Software is easy to test
4. Software is easy to modify
5. Software is easy to maintain
6. Software is easy to expand
• These pieces cannot be entirely independent of each
other as they together form the system. They have to
cooperate and communicate to solve the problem.
This communication adds complexity.
2. Abstraction
An abstraction is a tool that enables a designer to
consider a component at an abstract level
without bothering about the internal details of
the implementation. Abstraction can be used for
existing element as well as the component being
designed.
Here, there are two common abstraction
mechanisms.
1. Functional Abstraction
2. Data Abstraction
1. Functional Abstraction
1. A module is specified by the method it
performs.
2. The details of the algorithm to accomplish
the functions are not visible to the user of
the function.
• Functional abstraction forms the basis
for Function oriented design approaches.
2.Data Abstraction
• Details of the data elements are not visible to
the users of data. Data Abstraction forms the
basis for Object Oriented design approaches.
3. Modularity
• Modularity specifies to the division of
software into separate modules which are
differently named and addressed and are
integrated later on in to obtain the completely
functional software. It is the only property
that allows a program to be intellectually
manageable. Single large programs are
difficult to understand and read due to a large
number of reference variables, control paths,
global variables, etc.
The desirable properties of a
modular system are:
• Each module is a well-defined system that can
be used with other applications.
• Each module has single specified objectives.
• Modules can be separately compiled and
saved in the library.
• Modules should be easier to use than to build.
• Modules are simpler from outside than inside.
we will discuss various advantage and disadvantage
of Modularity.
Advantages of Modularity
 There are several advantages of Modularity
1. It allows large programs to be written by several or different
people
2. It encourages the creation of commonly used routines to be
placed in the library and used by other programs.
3. It simplifies the overlay procedure of loading a large program
into main storage.
4. It provides more checkpoints to measure progress.
5. It provides a framework for complete testing, more
accessible to test
6. It produced the well designed and more readable program.
Disadvantages of Modularity
There are several disadvantages of Modularity:
1. Execution time maybe, but not certainly, longer.
2. Storage size perhaps, but is not certainly,
increased.
3. Compilation and loading time may be longer
4. Inter-module communication problems may be
increased.
5. More linkage required, run-time may be longer,
more source lines must be written, and more
documentation has to be done.
Modular Design
• Modular design reduces the design complexity
and results in easier and faster
implementation by allowing parallel
development of various parts of a system. We
discuss a different section of modular design
in detail in this section:
 Functional Independence:
Functional independence is achieved by
developing functions that perform only one kind
of task and do not excessively interact with other
modules. Independence is important because it
makes implementation more accessible and faster.
The independent modules are easier to maintain,
test, and reduce error propagation and can be
reused in other programs as well. Thus, functional
independence is a good design feature which
ensures software quality.
It is measured using two criteria:
•Cohesion: It measures the relative function strength of a
module.
•Coupling: It measures the relative interdependence among
modules
4. Strategy of Design
• A good system design strategy is to organize the
program modules in such a method that are easy to
develop and latter too, change. Structured design
methods help developers to deal with the size and
complexity of programs. Analysts generate instructions
for the developers about how code should be
composed and how pieces of code should fit together
to form a program.
• To design a system, there are two possible approaches:
1. Top-down Approach
2. Bottom-up Approach
1. Top-down Approach
•This approach starts with the identification of the main
components and then decomposing them into their more
detailed sub-components.
2. Bottom-up Approach
•A bottom-up approach begins with the lower details and
moves towards up the hierarchy, as shown in fig. This
approach is suitable in case of an existing system.
•Coupling and Cohesion
Module Coupling
• In software engineering, the coupling is the
degree of interdependence between software
modules. Two modules that are tightly coupled
are strongly dependent on each other. However,
two modules that are loosely coupled are not
dependent on each other. Uncoupled
modules have no interdependence at all within
them.
The various types of coupling techniques are
shown in fig:
A good design is the one that has low coupling.
Coupling is measured by the number of relations
between the modules. That is, the coupling
increases as the number of calls between
modules increase or the amount of shared data is
large. Thus, it can be said that a design with high
coupling will have more errors.
Types of Module Coupling:-
1. No Direct Coupling:
There is no direct coupling between M1 and M2.
•In this case, modules are subordinates to different
modules. Therefore, no direct coupling.
2.Data Coupling:
 When data of one module is passed to another
module, this is called data coupling.
3. Stamp Coupling:
• Two modules are stamp coupled if they
communicate using composite data items such
as structure, objects, etc. When the module
passes non-global data structure or entire
structure to another module, they are said to
be stamp coupled.
For example, passing structure variable in C or
object in C++ language to a module.
4. Control Coupling:
 Control Coupling exists among two modules if
data from one module is used to direct the
structure of instruction execution in another.
5. External Coupling:
 External Coupling arises when two modules
share an externally imposed data format,
communication protocols, or device interface.
This is related to communication to external tools
and devices.
6. Common Coupling:
 Two modules are common coupled if they share
information through some global data items.
7. Content Coupling:
 Content Coupling exists among two modules if they share
code, e.g., a branch from one module into another module.
2.Module Cohesion
• In computer programming, cohesion defines to
the degree to which the elements of a module
belong together. Thus, cohesion measures the
strength of relationships between pieces of
functionality within a given module.
• For example, in highly cohesive systems,
functionality is strongly related.
• Cohesion is an ordinal type of measurement and
is generally described as "high cohesion" or "low
cohesion."
Types of Modules Cohesion
1.Functional Cohesion:
Functional Cohesion is said to exist if the different elements of a
module, cooperate to achieve a single function.
2.Sequential Cohesion:
 A module is said to possess sequential cohesion if the element
of a module form the components of the sequence, where the
output from one component of the sequence is input to the next.
3.Communicational Cohesion:
A module is said to have communicational cohesion, if all tasks
of the module refer to or update the same data structure, e.g.,
the set of functions defined on an array or a stack.
4.Procedural Cohesion:
A module is said to be procedural cohesion if the set of purpose of the
module are all parts of a procedure in which particular sequence of
steps has to be carried out for achieving a goal, e.g., the algorithm for
decoding a message.
5.Temporal Cohesion:
When a module includes functions that are associated by the fact that
all the methods must be executed in the same time, the module is said
to exhibit temporal cohesion.
6.Logical Cohesion:
A module is said to be logically cohesive if all the elements of the
module perform a similar operation. For example Error handling,
data input and data output, etc.
7.Coincidental Cohesion:
A module is said to have coincidental cohesion if it performs a set
of tasks that are associated with each other very loosely, if at all.
System software design1

More Related Content

What's hot

Design concept -Software Engineering
Design concept -Software EngineeringDesign concept -Software Engineering
Design concept -Software EngineeringVarsha Ajith
 
Fundamental design concepts
Fundamental design conceptsFundamental design concepts
Fundamental design conceptssrijavel
 
12 couplingand cohesion-student
12 couplingand cohesion-student12 couplingand cohesion-student
12 couplingand cohesion-studentrandhirlpu
 
Couplingand cohesion student
Couplingand cohesion studentCouplingand cohesion student
Couplingand cohesion studentsaurabh kumar
 
Implementation issues software engineering
Implementation issues software engineeringImplementation issues software engineering
Implementation issues software engineeringrishi ram khanal
 
Design and Implementation in Software Engineering
Design and Implementation in Software EngineeringDesign and Implementation in Software Engineering
Design and Implementation in Software EngineeringKourosh Sajjadi
 
Software Engineering with Objects (M363) Final Revision By Kuwait10
Software Engineering with Objects (M363) Final Revision By Kuwait10Software Engineering with Objects (M363) Final Revision By Kuwait10
Software Engineering with Objects (M363) Final Revision By Kuwait10Kuwait10
 
Ch5- Software Engineering 9
Ch5- Software Engineering 9Ch5- Software Engineering 9
Ch5- Software Engineering 9Ian Sommerville
 
Object Oriented, Design patterns and data modelling worshop
Object Oriented, Design patterns and data modelling worshopObject Oriented, Design patterns and data modelling worshop
Object Oriented, Design patterns and data modelling worshopMohammad Shawahneh
 

What's hot (20)

Design concept -Software Engineering
Design concept -Software EngineeringDesign concept -Software Engineering
Design concept -Software Engineering
 
Fundamental design concepts
Fundamental design conceptsFundamental design concepts
Fundamental design concepts
 
12 couplingand cohesion-student
12 couplingand cohesion-student12 couplingand cohesion-student
12 couplingand cohesion-student
 
Object oriented analysis and design unit- v
Object oriented analysis and design unit- vObject oriented analysis and design unit- v
Object oriented analysis and design unit- v
 
Couplingand cohesion student
Couplingand cohesion studentCouplingand cohesion student
Couplingand cohesion student
 
Implementation issues software engineering
Implementation issues software engineeringImplementation issues software engineering
Implementation issues software engineering
 
Hld lld
Hld lldHld lld
Hld lld
 
Design and Implementation in Software Engineering
Design and Implementation in Software EngineeringDesign and Implementation in Software Engineering
Design and Implementation in Software Engineering
 
Object oriented analysis and design unit- iii
Object oriented analysis and design unit- iiiObject oriented analysis and design unit- iii
Object oriented analysis and design unit- iii
 
Ch09
Ch09Ch09
Ch09
 
114 425-433
114 425-433114 425-433
114 425-433
 
Design engineering
Design engineeringDesign engineering
Design engineering
 
Software Engineering with Objects (M363) Final Revision By Kuwait10
Software Engineering with Objects (M363) Final Revision By Kuwait10Software Engineering with Objects (M363) Final Revision By Kuwait10
Software Engineering with Objects (M363) Final Revision By Kuwait10
 
Sw Software Design
Sw Software DesignSw Software Design
Sw Software Design
 
Unit 3
Unit 3Unit 3
Unit 3
 
SMD Unit i
SMD Unit iSMD Unit i
SMD Unit i
 
Ch5- Software Engineering 9
Ch5- Software Engineering 9Ch5- Software Engineering 9
Ch5- Software Engineering 9
 
unit 3 Design 1
unit 3 Design 1unit 3 Design 1
unit 3 Design 1
 
Object Oriented, Design patterns and data modelling worshop
Object Oriented, Design patterns and data modelling worshopObject Oriented, Design patterns and data modelling worshop
Object Oriented, Design patterns and data modelling worshop
 
Hld and lld
Hld and lldHld and lld
Hld and lld
 

Similar to System software design1

effective modular design.pptx
effective modular design.pptxeffective modular design.pptx
effective modular design.pptxDr.Shweta
 
2.Modular Design.pptx
2.Modular Design.pptx2.Modular Design.pptx
2.Modular Design.pptxREALGROUPS
 
CHAPTER 3.pptx
CHAPTER 3.pptxCHAPTER 3.pptx
CHAPTER 3.pptxSRKkkr1
 
Software Eng S3 ( Software Design ).pptx
Software Eng S3 ( Software Design ).pptxSoftware Eng S3 ( Software Design ).pptx
Software Eng S3 ( Software Design ).pptxgauriVarshney8
 
Se 381 - lec 22 - 24 - 12 may15 - modularity - i - coupling
Se 381 - lec 22 - 24  - 12 may15 - modularity - i - couplingSe 381 - lec 22 - 24  - 12 may15 - modularity - i - coupling
Se 381 - lec 22 - 24 - 12 may15 - modularity - i - couplingbabak danyal
 
DOC-20210303-WA0017..pptx,coding stuff in c
DOC-20210303-WA0017..pptx,coding stuff in cDOC-20210303-WA0017..pptx,coding stuff in c
DOC-20210303-WA0017..pptx,coding stuff in cfloraaluoch3
 
Software engineering Questions and Answers
Software engineering Questions and AnswersSoftware engineering Questions and Answers
Software engineering Questions and AnswersBala Ganesh
 
SWE-401 - 5. Software Design Basics
SWE-401 - 5. Software Design BasicsSWE-401 - 5. Software Design Basics
SWE-401 - 5. Software Design Basicsghayour abbas
 
Software Engineering Unit 3 PPT Software Design
Software Engineering Unit 3 PPT Software DesignSoftware Engineering Unit 3 PPT Software Design
Software Engineering Unit 3 PPT Software Designmayanksingh678141
 
Unit3 Software engineering UPTU
Unit3 Software engineering UPTUUnit3 Software engineering UPTU
Unit3 Software engineering UPTUMohammad Faizan
 
SE2018_Lec 15_ Software Design
SE2018_Lec 15_ Software DesignSE2018_Lec 15_ Software Design
SE2018_Lec 15_ Software DesignAmr E. Mohamed
 
System design process.pptx
System design process.pptxSystem design process.pptx
System design process.pptxNajibMuhammad16
 
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 techniquesnimmik4u
 
UNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvf
UNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvfUNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvf
UNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvfputtipavan23022023
 
Sharbani Bhattacharya SE design & Implementation
Sharbani Bhattacharya SE design & ImplementationSharbani Bhattacharya SE design & Implementation
Sharbani Bhattacharya SE design & ImplementationSharbani Bhattacharya
 
Software Design ppt.pptx
Software Design ppt.pptxSoftware Design ppt.pptx
Software Design ppt.pptxSeemaSarvath1
 

Similar to System software design1 (20)

effective modular design.pptx
effective modular design.pptxeffective modular design.pptx
effective modular design.pptx
 
2.Modular Design.pptx
2.Modular Design.pptx2.Modular Design.pptx
2.Modular Design.pptx
 
CHAPTER 3.pptx
CHAPTER 3.pptxCHAPTER 3.pptx
CHAPTER 3.pptx
 
Software design
Software designSoftware design
Software design
 
Software Eng S3 ( Software Design ).pptx
Software Eng S3 ( Software Design ).pptxSoftware Eng S3 ( Software Design ).pptx
Software Eng S3 ( Software Design ).pptx
 
Se 381 - lec 22 - 24 - 12 may15 - modularity - i - coupling
Se 381 - lec 22 - 24  - 12 may15 - modularity - i - couplingSe 381 - lec 22 - 24  - 12 may15 - modularity - i - coupling
Se 381 - lec 22 - 24 - 12 may15 - modularity - i - coupling
 
DOC-20210303-WA0017..pptx,coding stuff in c
DOC-20210303-WA0017..pptx,coding stuff in cDOC-20210303-WA0017..pptx,coding stuff in c
DOC-20210303-WA0017..pptx,coding stuff in c
 
SE UNIT-3.pdf
SE UNIT-3.pdfSE UNIT-3.pdf
SE UNIT-3.pdf
 
Software engineering Questions and Answers
Software engineering Questions and AnswersSoftware engineering Questions and Answers
Software engineering Questions and Answers
 
EFFECTIVE MODULAR DESIGN.pptx
EFFECTIVE MODULAR DESIGN.pptxEFFECTIVE MODULAR DESIGN.pptx
EFFECTIVE MODULAR DESIGN.pptx
 
SWE-401 - 5. Software Design Basics
SWE-401 - 5. Software Design BasicsSWE-401 - 5. Software Design Basics
SWE-401 - 5. Software Design Basics
 
Software Engineering Unit 3 PPT Software Design
Software Engineering Unit 3 PPT Software DesignSoftware Engineering Unit 3 PPT Software Design
Software Engineering Unit 3 PPT Software Design
 
Unit3 Software engineering UPTU
Unit3 Software engineering UPTUUnit3 Software engineering UPTU
Unit3 Software engineering UPTU
 
SE2018_Lec 15_ Software Design
SE2018_Lec 15_ Software DesignSE2018_Lec 15_ Software Design
SE2018_Lec 15_ Software Design
 
System design process.pptx
System design process.pptxSystem design process.pptx
System design process.pptx
 
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
 
UNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvf
UNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvfUNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvf
UNIT3 PART2.pptx dhfdifhdsfvgudf dhfbdhbffdvf
 
Sharbani Bhattacharya SE design & Implementation
Sharbani Bhattacharya SE design & ImplementationSharbani Bhattacharya SE design & Implementation
Sharbani Bhattacharya SE design & Implementation
 
Software Design ppt.pptx
Software Design ppt.pptxSoftware Design ppt.pptx
Software Design ppt.pptx
 
Unit 2
Unit 2Unit 2
Unit 2
 

Recently uploaded

HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
Test Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendTest Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendArshad QA
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationkaushalgiri8080
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsAndolasoft Inc
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...soniya singh
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️anilsa9823
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...OnePlan Solutions
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 

Recently uploaded (20)

HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Exploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the ProcessExploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the Process
 
Test Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendTest Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and Backend
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanation
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 

System software design1

  • 1.
  • 2. Software Design • Software design is a mechanism to transform user requirements into some suitable form, which helps the programmer in software coding and implementation. It deals with representing the client's requirement, as described in SRS (Software Requirement Specification) document, into a form, i.e., easily implementable using programming language.
  • 3. The software design phase is the first step in SDLC (Software Design Life Cycle), which moves the concentration from the problem domain to the solution domain. In software design, we consider the system to be a set of components or modules with clearly defined behaviors & boundaries.
  • 4.
  • 5. •Objectives of Software Design:- Following are the purposes of Software design:
  • 6. 1. Correctness: Software design should be correct as per requirement. 2. Completeness: The design should have all components like data structures, modules, and external interfaces, etc. 3. Efficiency: Resources should be used efficiently by the program. 4. Flexibility: Able to modify on changing needs. 5. Consistency: There should not be any inconsistency in the design. 6. Maintainability: The design should be so simple so that it can be easily maintainable by other designers.
  • 7. Software Design Principles • Software design principles are concerned with providing means to handle the complexity of the design process effectively. Effectively managing the complexity will not only reduce the effort needed for design but can also reduce the scope of introducing errors during design.
  • 8. Following are the principles of Software Design:
  • 9. 1. Problem Partitioning • For small problem, we can handle the entire problem at once but for the significant problem, divide the problems and conquer the problem it means to divide the problem into smaller pieces so that each piece can be captured separately. • For software design, the goal is to divide the problem into manageable pieces.
  • 10. Benefits of Problem Partitioning 1. Software is easy to understand 2. Software becomes simple 3. Software is easy to test 4. Software is easy to modify 5. Software is easy to maintain 6. Software is easy to expand • These pieces cannot be entirely independent of each other as they together form the system. They have to cooperate and communicate to solve the problem. This communication adds complexity.
  • 11. 2. Abstraction An abstraction is a tool that enables a designer to consider a component at an abstract level without bothering about the internal details of the implementation. Abstraction can be used for existing element as well as the component being designed. Here, there are two common abstraction mechanisms. 1. Functional Abstraction 2. Data Abstraction
  • 12. 1. Functional Abstraction 1. A module is specified by the method it performs. 2. The details of the algorithm to accomplish the functions are not visible to the user of the function. • Functional abstraction forms the basis for Function oriented design approaches.
  • 13. 2.Data Abstraction • Details of the data elements are not visible to the users of data. Data Abstraction forms the basis for Object Oriented design approaches.
  • 14. 3. Modularity • Modularity specifies to the division of software into separate modules which are differently named and addressed and are integrated later on in to obtain the completely functional software. It is the only property that allows a program to be intellectually manageable. Single large programs are difficult to understand and read due to a large number of reference variables, control paths, global variables, etc.
  • 15. The desirable properties of a modular system are: • Each module is a well-defined system that can be used with other applications. • Each module has single specified objectives. • Modules can be separately compiled and saved in the library. • Modules should be easier to use than to build. • Modules are simpler from outside than inside.
  • 16. we will discuss various advantage and disadvantage of Modularity.
  • 17. Advantages of Modularity  There are several advantages of Modularity 1. It allows large programs to be written by several or different people 2. It encourages the creation of commonly used routines to be placed in the library and used by other programs. 3. It simplifies the overlay procedure of loading a large program into main storage. 4. It provides more checkpoints to measure progress. 5. It provides a framework for complete testing, more accessible to test 6. It produced the well designed and more readable program.
  • 18. Disadvantages of Modularity There are several disadvantages of Modularity: 1. Execution time maybe, but not certainly, longer. 2. Storage size perhaps, but is not certainly, increased. 3. Compilation and loading time may be longer 4. Inter-module communication problems may be increased. 5. More linkage required, run-time may be longer, more source lines must be written, and more documentation has to be done.
  • 19. Modular Design • Modular design reduces the design complexity and results in easier and faster implementation by allowing parallel development of various parts of a system. We discuss a different section of modular design in detail in this section:
  • 20.  Functional Independence: Functional independence is achieved by developing functions that perform only one kind of task and do not excessively interact with other modules. Independence is important because it makes implementation more accessible and faster. The independent modules are easier to maintain, test, and reduce error propagation and can be reused in other programs as well. Thus, functional independence is a good design feature which ensures software quality.
  • 21. It is measured using two criteria: •Cohesion: It measures the relative function strength of a module. •Coupling: It measures the relative interdependence among modules
  • 22. 4. Strategy of Design • A good system design strategy is to organize the program modules in such a method that are easy to develop and latter too, change. Structured design methods help developers to deal with the size and complexity of programs. Analysts generate instructions for the developers about how code should be composed and how pieces of code should fit together to form a program. • To design a system, there are two possible approaches: 1. Top-down Approach 2. Bottom-up Approach
  • 23. 1. Top-down Approach •This approach starts with the identification of the main components and then decomposing them into their more detailed sub-components.
  • 24. 2. Bottom-up Approach •A bottom-up approach begins with the lower details and moves towards up the hierarchy, as shown in fig. This approach is suitable in case of an existing system.
  • 25. •Coupling and Cohesion Module Coupling • In software engineering, the coupling is the degree of interdependence between software modules. Two modules that are tightly coupled are strongly dependent on each other. However, two modules that are loosely coupled are not dependent on each other. Uncoupled modules have no interdependence at all within them.
  • 26. The various types of coupling techniques are shown in fig:
  • 27. A good design is the one that has low coupling. Coupling is measured by the number of relations between the modules. That is, the coupling increases as the number of calls between modules increase or the amount of shared data is large. Thus, it can be said that a design with high coupling will have more errors.
  • 28. Types of Module Coupling:-
  • 29. 1. No Direct Coupling: There is no direct coupling between M1 and M2. •In this case, modules are subordinates to different modules. Therefore, no direct coupling.
  • 30. 2.Data Coupling:  When data of one module is passed to another module, this is called data coupling.
  • 31. 3. Stamp Coupling: • Two modules are stamp coupled if they communicate using composite data items such as structure, objects, etc. When the module passes non-global data structure or entire structure to another module, they are said to be stamp coupled. For example, passing structure variable in C or object in C++ language to a module.
  • 32. 4. Control Coupling:  Control Coupling exists among two modules if data from one module is used to direct the structure of instruction execution in another. 5. External Coupling:  External Coupling arises when two modules share an externally imposed data format, communication protocols, or device interface. This is related to communication to external tools and devices.
  • 33. 6. Common Coupling:  Two modules are common coupled if they share information through some global data items. 7. Content Coupling:  Content Coupling exists among two modules if they share code, e.g., a branch from one module into another module.
  • 34. 2.Module Cohesion • In computer programming, cohesion defines to the degree to which the elements of a module belong together. Thus, cohesion measures the strength of relationships between pieces of functionality within a given module. • For example, in highly cohesive systems, functionality is strongly related. • Cohesion is an ordinal type of measurement and is generally described as "high cohesion" or "low cohesion."
  • 35.
  • 37. 1.Functional Cohesion: Functional Cohesion is said to exist if the different elements of a module, cooperate to achieve a single function. 2.Sequential Cohesion:  A module is said to possess sequential cohesion if the element of a module form the components of the sequence, where the output from one component of the sequence is input to the next. 3.Communicational Cohesion: A module is said to have communicational cohesion, if all tasks of the module refer to or update the same data structure, e.g., the set of functions defined on an array or a stack.
  • 38. 4.Procedural Cohesion: A module is said to be procedural cohesion if the set of purpose of the module are all parts of a procedure in which particular sequence of steps has to be carried out for achieving a goal, e.g., the algorithm for decoding a message. 5.Temporal Cohesion: When a module includes functions that are associated by the fact that all the methods must be executed in the same time, the module is said to exhibit temporal cohesion.
  • 39. 6.Logical Cohesion: A module is said to be logically cohesive if all the elements of the module perform a similar operation. For example Error handling, data input and data output, etc. 7.Coincidental Cohesion: A module is said to have coincidental cohesion if it performs a set of tasks that are associated with each other very loosely, if at all.