SlideShare a Scribd company logo
Engineering Systems Design
• The need for comprehensive Software Quality Requirements
• Classification of requirements into Software Quality Factors
• Product Operation Factors
• Product Revision Factors
• Product Transition Factors
• Alternative models of software quality factors
Engineering Systems Design
Need for Comprehensive Software Quality
Requirements
• Need for improving poor requirements documents is widespread
• Frequently lack quality factors such as: usability, reusability,
maintainability, …
• Software industry groups the long list of related attributes into
what we call quality factors.
• Unequal emphasis on all quality factors.
• Emphasis varies from project to project
McCall’s Quality Factors
• McCall’s has 11 factors, Groups them into categories.
Others have added few more, but this still prevail.
• Three categories:
–Product Operation Factors
• Basic Operational Characteristics
• Correctness, Reliability, Efficiency, Integrity, and Usability
–Product Revision Factors
• Ability to Change
• Maintainability, Flexibility, Testability
–Product Transition Factors
• Adaptability to New Environment
• Portability, Reusability, Interoperability
McCall’s SW Quality Framework
Product Revision Factors Product Transition Factors
Product Operation Factors
McCall's Factor Model Tree
• Correctness
• Reliability
• Efficiency
• Integrity
• Usability
Product Operation Factors
How well does it run and ease of
use.
McCall’s Quality Factors
Category: Product Operation Factors
• 1. Correctness.
• The ability of software products to perform their exact tasks or
behaviors as defined by their specification.
• Examples include:
– Specifying accuracies for correct outputs.
– Specifying the completeness of the outputs.
– Specifying the timeliness of the output.
– Specifying the standards.
McCall’s Quality Factors
Category: Product Operation Factors
• 2. Reliability Requirements:
• Reliability requirements deal with the failure to provide service.
–Address failure rates either overall or to required functions.
• Example:
–A heart monitoring system have a failure rate less than one / million
cases.
–Downtime for a system will not be more than ten minutes per month.
• 3. Efficiency Requirements: Deals with the hardware resources
needed to perform the functions of the software.
–Here we consider MIPS, MHz (cycles per second), Data storage
capabilities measured in MB or TB, Communication lines (usually
measured in KBPS, MBPS, or GBPS).
McCall’s Quality Factors
Category: Product Operation Factors
• 4. Integrity Requirements: Deal with system security that
prevent unauthorized persons access.
• Cyber Security, Internet security, network security etc.
• 5. Usability Requirements: Deals with the scope of staff
resources needed to train new employees and to operate the software
system.
– Deals with learnability, utility, usability etc.
– Example spec: A staff member should be able to easily perform one
task.
• Maintainability
• Flexibility
• Testability
Product Revision Factors
Fix it Easily, Retest, Version it, and Deploy it
easily ?
McCall’s Quality Factors
Category: Product Revision Software
Factors
• 1. Maintainability Requirements
–The degree of effort deals with measure of how easily bug fixes or
functional modifications can be accomplished with the modular
structure of the software.
–Example: Refactoring...
• Maintenance activities:
–Corrective maintenance
–Adaptive maintenance
–Perfective maintenance
McCall’s Quality Factors
Category: Product Revision Software
Factors
• 2. Flexibility Requirements Deals with resources to change (adopt)
software. How easily can it be updated with the new functionality.
– May also involve a little perfective maintenance to perhaps do a little
better due to the customers, perhaps slightly more robust environment.
• 3. Testability Requirements. Deals with the testing of an information
system as well as with its operation.
– Are intermediate results of computations predefined to assist testing?
– Are log files created?
– Backup?
– Example: Traceability
• Portability
• Reusability
• Interoperability
Product Transition Factors
Can I move the app to different hardware ?
Can I reuse major portions of the code with little
modification to develop new apps ?
McCall’s Quality Factors
Category: Product Transition Software Quality Factors
• 1. Portability Requirements: If the software ported to different
environments (different hardware, operating systems) and still
maintain an existing environment, then portability is used.
• 2. Reusability Requirements: Deals with the using existing
software components in a different context.
• Are we able to reuse parts of the app for new applications?
– Can save massive development costs due to errors found / tested.
McCall’s Quality Factors
Category: Product Transition Software Quality Factors
• 3. Interoperability Requirements: Focus on creating
interface with other existing systems. To which software components
work together.
Example:
Firmware
Web portal
Alternatives
• Some other SQA professionals have offered essentially renamed quality
factors.
• One has offered 12 factors; another 15 factors.
• Totally five new factors were suggested
• Evans and Marciniak offer two ‘new’ ones.
– Verifiability
– Expandability
• Deutsch and Willis offer three ‘new’ ones.
– Safety
– Manageability
– Survivability
McCall's Factor Model and Alternative
Models
Evans and Marciniak Alternatives
– 1. Verifiability Requirements Addresses design and
programming features that allow for efficient verification of design
and programming.
• This does not refer to outputs, rather, structure of code, design
elements and their dependencies, coupling, cohesion, patterns…
– 2. Expandability Requirements The implementation takes
future growth into consideration, refers to scalability and extensibility
to provide more usability.
• McCall’s flexibility
Deutsch and Willis Alternatives
–1. Safety Requirements: Meant to eliminate risky conditions as
a result of errors in process control software, as in setting alarms or
sounding warnings.
•Especially important to process control / real time software such as
that running conveyor belts or instrumentation for ordinance…
–2. Manageability Requirements: Maintainability is a little
similar with flexibility but it focuses on modifications about error
corrections and minor function modifications, not major functional
extensibilities.
–3. Survivability Requirements: Is the ability to remain alive or
continue to exist. Refer to MTBF(Mean time between failures),
MTTR (Mean time to recover).
• McCall’s Reliability.
Alternatives
– ISO 9126 Quality Model.
– Boehm’s Quality Model.
– Dromey's Quality Model.
– FURPS Quality Model.
Design Principles
Design Principles
• Tunnel Vision
• Traceable
• Reinvent
• Intellectual distance
• Accommodate change
• Degrade gently
• Assessed quality
• Conceptual errors
Design Principles
1. Tunnel Vision: “The design process should not suffer from tunnel
vision”. A good designer should consider alternative approaches, judging
each based on the requirements of the problem.
Example: “Smart Tunnels” can not turn back to exit to come back.
2. Traceable: “The design should be traceable to the analysis model”.
Because a single element of the design model can often be traced back to
multiple requirements, it is necessary to have a means for tracking how
requirements have been satisfied by the design model.
• Any Queries, Any confusion trace back
Design Principles
3. Reinvent: “The design should not reinvent the wheel”. Systems are
constructed using a set of design patterns. These patterns should always
be chosen as an alternative to reinvention.
Already Used, Tested too many times.
4. Intellectual distance: “The design should minimize the intellectual
distance between the software and the problem as it exists in the real
world”. The structure of the software design should mimic the structure
of the domain.
Example: ATM machine
Ctrl + C
Design Principles
5. Accommodate change: “The design should be structured to
accommodate change”. Leave the space for change the design. To adopt
new things.
6. Degrade gently: “The design should be structured to degrade
gently, even when aberrant data, events, or operating conditions are
encountered”. Well- designed software should never "bomb"; it should
be designed to accommodate unusual circumstances, it should do in a
graceful manner.
WHAT WILL YOU DO WHEN SYSTEM IS GOING TO DIE ?
Design Principles
7. Assessed quality: “The design should be assessed for quality as it
is being created, not after the fact”. A variety of design concepts and
quality attributes are available to assist the designer in measuring quality
throughout the development process.
8. Conceptual errors: “The design should be reviewed to minimize
conceptual errors”.
Cohesion & coupling, ambiguity, inconsistency

More Related Content

What's hot

Pressman ch-3-prescriptive-process-models
Pressman ch-3-prescriptive-process-modelsPressman ch-3-prescriptive-process-models
Pressman ch-3-prescriptive-process-models
Noor Ul Hudda Memon
 
Software project management 3
Software project management 3Software project management 3
Software project management 3
Indu Sharma Bhardwaj
 
Evolutionary process models se.ppt
Evolutionary process models se.pptEvolutionary process models se.ppt
Evolutionary process models se.ppt
bhadjaashvini1
 
Istqb sample paper 2011- www.ajoysingha.info
Istqb sample paper   2011- www.ajoysingha.infoIstqb sample paper   2011- www.ajoysingha.info
Istqb sample paper 2011- www.ajoysingha.info
TestingGeeks
 
Software quality
Software qualitySoftware quality
Software quality
Sara Mehmood
 
SDLC
SDLCSDLC
Slides chapters 26-27
Slides chapters 26-27Slides chapters 26-27
Slides chapters 26-27
Priyanka Shetty
 
System implemantation
System implemantationSystem implemantation
System implemantation
Jaipal Dhobale
 
Software testing & Quality Assurance
Software testing & Quality Assurance Software testing & Quality Assurance
Software testing & Quality Assurance
Webtech Learning
 
SDLC ITS MODEL AND SOFTWARE TESTING
SDLC ITS MODEL AND SOFTWARE TESTING SDLC ITS MODEL AND SOFTWARE TESTING
SDLC ITS MODEL AND SOFTWARE TESTING
Abhinav Shukla
 
MG6088 SOFTWARE PROJECT MANAGEMENT
MG6088 SOFTWARE PROJECT MANAGEMENTMG6088 SOFTWARE PROJECT MANAGEMENT
MG6088 SOFTWARE PROJECT MANAGEMENT
Kathirvel Ayyaswamy
 
Intro to Manual Testing
Intro to Manual TestingIntro to Manual Testing
Intro to Manual Testing
Ayah Soufan
 
MG6088 SOFTWARE PROJECT MANAGEMENT
MG6088 SOFTWARE PROJECT MANAGEMENTMG6088 SOFTWARE PROJECT MANAGEMENT
MG6088 SOFTWARE PROJECT MANAGEMENT
Kathirvel Ayyaswamy
 
Ch 7 integrating quality activities in the projectlife cycle
Ch 7 integrating quality activities in the projectlife cycleCh 7 integrating quality activities in the projectlife cycle
Ch 7 integrating quality activities in the projectlife cycle
Kittitouch Suteeca
 
Test design techniques
Test design techniquesTest design techniques
Test design techniques
Mohamed Elshenawy
 
Software Configuration Management (SCM)
Software Configuration Management (SCM)Software Configuration Management (SCM)
Software Configuration Management (SCM)
Nishkarsh Gupta
 
ISTQB Technical Test Analyst 2012 Training - Structure-Based Testing
ISTQB Technical Test Analyst 2012 Training - Structure-Based TestingISTQB Technical Test Analyst 2012 Training - Structure-Based Testing
ISTQB Technical Test Analyst 2012 Training - Structure-Based Testing
Amr Ali (ISTQB CTAL Full, CSM, ITIL Foundation)
 
Software testing objective_types
Software testing objective_typesSoftware testing objective_types
Software testing objective_types
sangeeswaran
 
Component Based Software Engineering
Component Based Software EngineeringComponent Based Software Engineering
Component Based Software Engineering
SatishDabhi1
 
3. ch 2-process model
3. ch 2-process model3. ch 2-process model
3. ch 2-process model
Delowar hossain
 

What's hot (20)

Pressman ch-3-prescriptive-process-models
Pressman ch-3-prescriptive-process-modelsPressman ch-3-prescriptive-process-models
Pressman ch-3-prescriptive-process-models
 
Software project management 3
Software project management 3Software project management 3
Software project management 3
 
Evolutionary process models se.ppt
Evolutionary process models se.pptEvolutionary process models se.ppt
Evolutionary process models se.ppt
 
Istqb sample paper 2011- www.ajoysingha.info
Istqb sample paper   2011- www.ajoysingha.infoIstqb sample paper   2011- www.ajoysingha.info
Istqb sample paper 2011- www.ajoysingha.info
 
Software quality
Software qualitySoftware quality
Software quality
 
SDLC
SDLCSDLC
SDLC
 
Slides chapters 26-27
Slides chapters 26-27Slides chapters 26-27
Slides chapters 26-27
 
System implemantation
System implemantationSystem implemantation
System implemantation
 
Software testing & Quality Assurance
Software testing & Quality Assurance Software testing & Quality Assurance
Software testing & Quality Assurance
 
SDLC ITS MODEL AND SOFTWARE TESTING
SDLC ITS MODEL AND SOFTWARE TESTING SDLC ITS MODEL AND SOFTWARE TESTING
SDLC ITS MODEL AND SOFTWARE TESTING
 
MG6088 SOFTWARE PROJECT MANAGEMENT
MG6088 SOFTWARE PROJECT MANAGEMENTMG6088 SOFTWARE PROJECT MANAGEMENT
MG6088 SOFTWARE PROJECT MANAGEMENT
 
Intro to Manual Testing
Intro to Manual TestingIntro to Manual Testing
Intro to Manual Testing
 
MG6088 SOFTWARE PROJECT MANAGEMENT
MG6088 SOFTWARE PROJECT MANAGEMENTMG6088 SOFTWARE PROJECT MANAGEMENT
MG6088 SOFTWARE PROJECT MANAGEMENT
 
Ch 7 integrating quality activities in the projectlife cycle
Ch 7 integrating quality activities in the projectlife cycleCh 7 integrating quality activities in the projectlife cycle
Ch 7 integrating quality activities in the projectlife cycle
 
Test design techniques
Test design techniquesTest design techniques
Test design techniques
 
Software Configuration Management (SCM)
Software Configuration Management (SCM)Software Configuration Management (SCM)
Software Configuration Management (SCM)
 
ISTQB Technical Test Analyst 2012 Training - Structure-Based Testing
ISTQB Technical Test Analyst 2012 Training - Structure-Based TestingISTQB Technical Test Analyst 2012 Training - Structure-Based Testing
ISTQB Technical Test Analyst 2012 Training - Structure-Based Testing
 
Software testing objective_types
Software testing objective_typesSoftware testing objective_types
Software testing objective_types
 
Component Based Software Engineering
Component Based Software EngineeringComponent Based Software Engineering
Component Based Software Engineering
 
3. ch 2-process model
3. ch 2-process model3. ch 2-process model
3. ch 2-process model
 

Similar to Design principles & quality factors

Software Quality Factors-Non Functional Rq.pptx
Software Quality Factors-Non Functional Rq.pptxSoftware Quality Factors-Non Functional Rq.pptx
Software Quality Factors-Non Functional Rq.pptx
singbling
 
Software qualityfactors
Software qualityfactorsSoftware qualityfactors
Software qualityfactors
saira gilani
 
Software quality
Software qualitySoftware quality
Software quality
jagadeesan
 
6. McCall's Model.pptx
6. McCall's Model.pptx6. McCall's Model.pptx
6. McCall's Model.pptx
KalsoomTahir2
 
Software Quality Assurance
Software Quality AssuranceSoftware Quality Assurance
Software Quality Assurance
Santhiya Grace
 
STQA 1.pptx
STQA 1.pptxSTQA 1.pptx
STQA 1.pptx
laravoj420
 
McCall's Quality Factors
McCall's Quality FactorsMcCall's Quality Factors
McCall's Quality Factors
Usman Khan
 
Software engineering
Software engineeringSoftware engineering
Software engineering
nimmik4u
 
software engineering
software engineering software engineering
software engineering
bharati vidhyapeeth uni.-pune
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAPOLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA
Aiman Hud
 
Software systems engineering PRINCIPLES
Software systems engineering PRINCIPLESSoftware systems engineering PRINCIPLES
Software systems engineering PRINCIPLES
Ivano Malavolta
 
Fundamentals of software development
Fundamentals of software developmentFundamentals of software development
Fundamentals of software development
Pratik Devmurari
 
INTRODUCTION TO SOFTWARE ENGINEERING
INTRODUCTION TO SOFTWARE ENGINEERINGINTRODUCTION TO SOFTWARE ENGINEERING
INTRODUCTION TO SOFTWARE ENGINEERING
Preeti Mishra
 
Scope of software engineering
Scope of software engineeringScope of software engineering
Scope of software engineering
Muhammad Naveed Zafar
 
Intoduction to software engineering part 2
Intoduction to software engineering part 2Intoduction to software engineering part 2
Intoduction to software engineering part 2
Rupesh Vaishnav
 
software Engineering process
software Engineering processsoftware Engineering process
software Engineering process
Raheel Aslam
 
Lect-4: Software Development Life Cycle Model - SPM
Lect-4: Software Development Life Cycle Model - SPMLect-4: Software Development Life Cycle Model - SPM
Lect-4: Software Development Life Cycle Model - SPM
Mubashir Ali
 
sdlc.pptx
sdlc.pptxsdlc.pptx
sdlc.pptx
XylemSolutions
 
Unit 8 software quality and matrices
Unit 8 software quality and matricesUnit 8 software quality and matrices
Unit 8 software quality and matrices
Preeti Mishra
 
Software maintenance real world maintenance cost
Software maintenance real world maintenance costSoftware maintenance real world maintenance cost
Software maintenance real world maintenance cost
malathieswaran29
 

Similar to Design principles & quality factors (20)

Software Quality Factors-Non Functional Rq.pptx
Software Quality Factors-Non Functional Rq.pptxSoftware Quality Factors-Non Functional Rq.pptx
Software Quality Factors-Non Functional Rq.pptx
 
Software qualityfactors
Software qualityfactorsSoftware qualityfactors
Software qualityfactors
 
Software quality
Software qualitySoftware quality
Software quality
 
6. McCall's Model.pptx
6. McCall's Model.pptx6. McCall's Model.pptx
6. McCall's Model.pptx
 
Software Quality Assurance
Software Quality AssuranceSoftware Quality Assurance
Software Quality Assurance
 
STQA 1.pptx
STQA 1.pptxSTQA 1.pptx
STQA 1.pptx
 
McCall's Quality Factors
McCall's Quality FactorsMcCall's Quality Factors
McCall's Quality Factors
 
Software engineering
Software engineeringSoftware engineering
Software engineering
 
software engineering
software engineering software engineering
software engineering
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAPOLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA
 
Software systems engineering PRINCIPLES
Software systems engineering PRINCIPLESSoftware systems engineering PRINCIPLES
Software systems engineering PRINCIPLES
 
Fundamentals of software development
Fundamentals of software developmentFundamentals of software development
Fundamentals of software development
 
INTRODUCTION TO SOFTWARE ENGINEERING
INTRODUCTION TO SOFTWARE ENGINEERINGINTRODUCTION TO SOFTWARE ENGINEERING
INTRODUCTION TO SOFTWARE ENGINEERING
 
Scope of software engineering
Scope of software engineeringScope of software engineering
Scope of software engineering
 
Intoduction to software engineering part 2
Intoduction to software engineering part 2Intoduction to software engineering part 2
Intoduction to software engineering part 2
 
software Engineering process
software Engineering processsoftware Engineering process
software Engineering process
 
Lect-4: Software Development Life Cycle Model - SPM
Lect-4: Software Development Life Cycle Model - SPMLect-4: Software Development Life Cycle Model - SPM
Lect-4: Software Development Life Cycle Model - SPM
 
sdlc.pptx
sdlc.pptxsdlc.pptx
sdlc.pptx
 
Unit 8 software quality and matrices
Unit 8 software quality and matricesUnit 8 software quality and matrices
Unit 8 software quality and matrices
 
Software maintenance real world maintenance cost
Software maintenance real world maintenance costSoftware maintenance real world maintenance cost
Software maintenance real world maintenance cost
 

Recently uploaded

Zodiac Signs and Food Preferences_ What Your Sign Says About Your Taste
Zodiac Signs and Food Preferences_ What Your Sign Says About Your TasteZodiac Signs and Food Preferences_ What Your Sign Says About Your Taste
Zodiac Signs and Food Preferences_ What Your Sign Says About Your Taste
my Pandit
 
Best practices for project execution and delivery
Best practices for project execution and deliveryBest practices for project execution and delivery
Best practices for project execution and delivery
CLIVE MINCHIN
 
❼❷⓿❺❻❷❽❷❼❽ Dpboss Matka Result Satta Matka Guessing Satta Fix jodi Kalyan Fin...
❼❷⓿❺❻❷❽❷❼❽ Dpboss Matka Result Satta Matka Guessing Satta Fix jodi Kalyan Fin...❼❷⓿❺❻❷❽❷❼❽ Dpboss Matka Result Satta Matka Guessing Satta Fix jodi Kalyan Fin...
❼❷⓿❺❻❷❽❷❼❽ Dpboss Matka Result Satta Matka Guessing Satta Fix jodi Kalyan Fin...
❼❷⓿❺❻❷❽❷❼❽ Dpboss Kalyan Satta Matka Guessing Matka Result Main Bazar chart
 
Top mailing list providers in the USA.pptx
Top mailing list providers in the USA.pptxTop mailing list providers in the USA.pptx
Top mailing list providers in the USA.pptx
JeremyPeirce1
 
Authentically Social by Corey Perlman - EO Puerto Rico
Authentically Social by Corey Perlman - EO Puerto RicoAuthentically Social by Corey Perlman - EO Puerto Rico
Authentically Social by Corey Perlman - EO Puerto Rico
Corey Perlman, Social Media Speaker and Consultant
 
Brian Fitzsimmons on the Business Strategy and Content Flywheel of Barstool S...
Brian Fitzsimmons on the Business Strategy and Content Flywheel of Barstool S...Brian Fitzsimmons on the Business Strategy and Content Flywheel of Barstool S...
Brian Fitzsimmons on the Business Strategy and Content Flywheel of Barstool S...
Neil Horowitz
 
Organizational Change Leadership Agile Tour Geneve 2024
Organizational Change Leadership Agile Tour Geneve 2024Organizational Change Leadership Agile Tour Geneve 2024
Organizational Change Leadership Agile Tour Geneve 2024
Kirill Klimov
 
Chapter 7 Final business management sciences .ppt
Chapter 7 Final business management sciences .pptChapter 7 Final business management sciences .ppt
Chapter 7 Final business management sciences .ppt
ssuser567e2d
 
Anny Serafina Love - Letter of Recommendation by Kellen Harkins, MS.
Anny Serafina Love - Letter of Recommendation by Kellen Harkins, MS.Anny Serafina Love - Letter of Recommendation by Kellen Harkins, MS.
Anny Serafina Love - Letter of Recommendation by Kellen Harkins, MS.
AnnySerafinaLove
 
The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...
The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...
The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...
APCO
 
-- June 2024 is National Volunteer Month --
-- June 2024 is National Volunteer Month ---- June 2024 is National Volunteer Month --
-- June 2024 is National Volunteer Month --
NZSG
 
How to Implement a Strategy: Transform Your Strategy with BSC Designer's Comp...
How to Implement a Strategy: Transform Your Strategy with BSC Designer's Comp...How to Implement a Strategy: Transform Your Strategy with BSC Designer's Comp...
How to Implement a Strategy: Transform Your Strategy with BSC Designer's Comp...
Aleksey Savkin
 
How MJ Global Leads the Packaging Industry.pdf
How MJ Global Leads the Packaging Industry.pdfHow MJ Global Leads the Packaging Industry.pdf
How MJ Global Leads the Packaging Industry.pdf
MJ Global
 
Building Your Employer Brand with Social Media
Building Your Employer Brand with Social MediaBuilding Your Employer Brand with Social Media
Building Your Employer Brand with Social Media
LuanWise
 
Observation Lab PowerPoint Assignment for TEM 431
Observation Lab PowerPoint Assignment for TEM 431Observation Lab PowerPoint Assignment for TEM 431
Observation Lab PowerPoint Assignment for TEM 431
ecamare2
 
HOW TO START UP A COMPANY A STEP-BY-STEP GUIDE.pdf
HOW TO START UP A COMPANY A STEP-BY-STEP GUIDE.pdfHOW TO START UP A COMPANY A STEP-BY-STEP GUIDE.pdf
HOW TO START UP A COMPANY A STEP-BY-STEP GUIDE.pdf
46adnanshahzad
 
Dpboss Matka Guessing Satta Matta Matka Kalyan Chart Satta Matka
Dpboss Matka Guessing Satta Matta Matka Kalyan Chart Satta MatkaDpboss Matka Guessing Satta Matta Matka Kalyan Chart Satta Matka
Dpboss Matka Guessing Satta Matta Matka Kalyan Chart Satta Matka
➒➌➎➏➑➐➋➑➐➐Dpboss Matka Guessing Satta Matka Kalyan Chart Indian Matka
 
2024-6-01-IMPACTSilver-Corp-Presentation.pdf
2024-6-01-IMPACTSilver-Corp-Presentation.pdf2024-6-01-IMPACTSilver-Corp-Presentation.pdf
2024-6-01-IMPACTSilver-Corp-Presentation.pdf
hartfordclub1
 
Digital Transformation Frameworks: Driving Digital Excellence
Digital Transformation Frameworks: Driving Digital ExcellenceDigital Transformation Frameworks: Driving Digital Excellence
Digital Transformation Frameworks: Driving Digital Excellence
Operational Excellence Consulting
 
Taurus Zodiac Sign: Unveiling the Traits, Dates, and Horoscope Insights of th...
Taurus Zodiac Sign: Unveiling the Traits, Dates, and Horoscope Insights of th...Taurus Zodiac Sign: Unveiling the Traits, Dates, and Horoscope Insights of th...
Taurus Zodiac Sign: Unveiling the Traits, Dates, and Horoscope Insights of th...
my Pandit
 

Recently uploaded (20)

Zodiac Signs and Food Preferences_ What Your Sign Says About Your Taste
Zodiac Signs and Food Preferences_ What Your Sign Says About Your TasteZodiac Signs and Food Preferences_ What Your Sign Says About Your Taste
Zodiac Signs and Food Preferences_ What Your Sign Says About Your Taste
 
Best practices for project execution and delivery
Best practices for project execution and deliveryBest practices for project execution and delivery
Best practices for project execution and delivery
 
❼❷⓿❺❻❷❽❷❼❽ Dpboss Matka Result Satta Matka Guessing Satta Fix jodi Kalyan Fin...
❼❷⓿❺❻❷❽❷❼❽ Dpboss Matka Result Satta Matka Guessing Satta Fix jodi Kalyan Fin...❼❷⓿❺❻❷❽❷❼❽ Dpboss Matka Result Satta Matka Guessing Satta Fix jodi Kalyan Fin...
❼❷⓿❺❻❷❽❷❼❽ Dpboss Matka Result Satta Matka Guessing Satta Fix jodi Kalyan Fin...
 
Top mailing list providers in the USA.pptx
Top mailing list providers in the USA.pptxTop mailing list providers in the USA.pptx
Top mailing list providers in the USA.pptx
 
Authentically Social by Corey Perlman - EO Puerto Rico
Authentically Social by Corey Perlman - EO Puerto RicoAuthentically Social by Corey Perlman - EO Puerto Rico
Authentically Social by Corey Perlman - EO Puerto Rico
 
Brian Fitzsimmons on the Business Strategy and Content Flywheel of Barstool S...
Brian Fitzsimmons on the Business Strategy and Content Flywheel of Barstool S...Brian Fitzsimmons on the Business Strategy and Content Flywheel of Barstool S...
Brian Fitzsimmons on the Business Strategy and Content Flywheel of Barstool S...
 
Organizational Change Leadership Agile Tour Geneve 2024
Organizational Change Leadership Agile Tour Geneve 2024Organizational Change Leadership Agile Tour Geneve 2024
Organizational Change Leadership Agile Tour Geneve 2024
 
Chapter 7 Final business management sciences .ppt
Chapter 7 Final business management sciences .pptChapter 7 Final business management sciences .ppt
Chapter 7 Final business management sciences .ppt
 
Anny Serafina Love - Letter of Recommendation by Kellen Harkins, MS.
Anny Serafina Love - Letter of Recommendation by Kellen Harkins, MS.Anny Serafina Love - Letter of Recommendation by Kellen Harkins, MS.
Anny Serafina Love - Letter of Recommendation by Kellen Harkins, MS.
 
The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...
The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...
The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...
 
-- June 2024 is National Volunteer Month --
-- June 2024 is National Volunteer Month ---- June 2024 is National Volunteer Month --
-- June 2024 is National Volunteer Month --
 
How to Implement a Strategy: Transform Your Strategy with BSC Designer's Comp...
How to Implement a Strategy: Transform Your Strategy with BSC Designer's Comp...How to Implement a Strategy: Transform Your Strategy with BSC Designer's Comp...
How to Implement a Strategy: Transform Your Strategy with BSC Designer's Comp...
 
How MJ Global Leads the Packaging Industry.pdf
How MJ Global Leads the Packaging Industry.pdfHow MJ Global Leads the Packaging Industry.pdf
How MJ Global Leads the Packaging Industry.pdf
 
Building Your Employer Brand with Social Media
Building Your Employer Brand with Social MediaBuilding Your Employer Brand with Social Media
Building Your Employer Brand with Social Media
 
Observation Lab PowerPoint Assignment for TEM 431
Observation Lab PowerPoint Assignment for TEM 431Observation Lab PowerPoint Assignment for TEM 431
Observation Lab PowerPoint Assignment for TEM 431
 
HOW TO START UP A COMPANY A STEP-BY-STEP GUIDE.pdf
HOW TO START UP A COMPANY A STEP-BY-STEP GUIDE.pdfHOW TO START UP A COMPANY A STEP-BY-STEP GUIDE.pdf
HOW TO START UP A COMPANY A STEP-BY-STEP GUIDE.pdf
 
Dpboss Matka Guessing Satta Matta Matka Kalyan Chart Satta Matka
Dpboss Matka Guessing Satta Matta Matka Kalyan Chart Satta MatkaDpboss Matka Guessing Satta Matta Matka Kalyan Chart Satta Matka
Dpboss Matka Guessing Satta Matta Matka Kalyan Chart Satta Matka
 
2024-6-01-IMPACTSilver-Corp-Presentation.pdf
2024-6-01-IMPACTSilver-Corp-Presentation.pdf2024-6-01-IMPACTSilver-Corp-Presentation.pdf
2024-6-01-IMPACTSilver-Corp-Presentation.pdf
 
Digital Transformation Frameworks: Driving Digital Excellence
Digital Transformation Frameworks: Driving Digital ExcellenceDigital Transformation Frameworks: Driving Digital Excellence
Digital Transformation Frameworks: Driving Digital Excellence
 
Taurus Zodiac Sign: Unveiling the Traits, Dates, and Horoscope Insights of th...
Taurus Zodiac Sign: Unveiling the Traits, Dates, and Horoscope Insights of th...Taurus Zodiac Sign: Unveiling the Traits, Dates, and Horoscope Insights of th...
Taurus Zodiac Sign: Unveiling the Traits, Dates, and Horoscope Insights of th...
 

Design principles & quality factors

  • 2. • The need for comprehensive Software Quality Requirements • Classification of requirements into Software Quality Factors • Product Operation Factors • Product Revision Factors • Product Transition Factors • Alternative models of software quality factors Engineering Systems Design
  • 3. Need for Comprehensive Software Quality Requirements • Need for improving poor requirements documents is widespread • Frequently lack quality factors such as: usability, reusability, maintainability, … • Software industry groups the long list of related attributes into what we call quality factors. • Unequal emphasis on all quality factors. • Emphasis varies from project to project
  • 4. McCall’s Quality Factors • McCall’s has 11 factors, Groups them into categories. Others have added few more, but this still prevail. • Three categories: –Product Operation Factors • Basic Operational Characteristics • Correctness, Reliability, Efficiency, Integrity, and Usability –Product Revision Factors • Ability to Change • Maintainability, Flexibility, Testability –Product Transition Factors • Adaptability to New Environment • Portability, Reusability, Interoperability
  • 5. McCall’s SW Quality Framework Product Revision Factors Product Transition Factors Product Operation Factors
  • 7. • Correctness • Reliability • Efficiency • Integrity • Usability Product Operation Factors How well does it run and ease of use.
  • 8. McCall’s Quality Factors Category: Product Operation Factors • 1. Correctness. • The ability of software products to perform their exact tasks or behaviors as defined by their specification. • Examples include: – Specifying accuracies for correct outputs. – Specifying the completeness of the outputs. – Specifying the timeliness of the output. – Specifying the standards.
  • 9. McCall’s Quality Factors Category: Product Operation Factors • 2. Reliability Requirements: • Reliability requirements deal with the failure to provide service. –Address failure rates either overall or to required functions. • Example: –A heart monitoring system have a failure rate less than one / million cases. –Downtime for a system will not be more than ten minutes per month. • 3. Efficiency Requirements: Deals with the hardware resources needed to perform the functions of the software. –Here we consider MIPS, MHz (cycles per second), Data storage capabilities measured in MB or TB, Communication lines (usually measured in KBPS, MBPS, or GBPS).
  • 10. McCall’s Quality Factors Category: Product Operation Factors • 4. Integrity Requirements: Deal with system security that prevent unauthorized persons access. • Cyber Security, Internet security, network security etc. • 5. Usability Requirements: Deals with the scope of staff resources needed to train new employees and to operate the software system. – Deals with learnability, utility, usability etc. – Example spec: A staff member should be able to easily perform one task.
  • 11. • Maintainability • Flexibility • Testability Product Revision Factors Fix it Easily, Retest, Version it, and Deploy it easily ?
  • 12. McCall’s Quality Factors Category: Product Revision Software Factors • 1. Maintainability Requirements –The degree of effort deals with measure of how easily bug fixes or functional modifications can be accomplished with the modular structure of the software. –Example: Refactoring... • Maintenance activities: –Corrective maintenance –Adaptive maintenance –Perfective maintenance
  • 13. McCall’s Quality Factors Category: Product Revision Software Factors • 2. Flexibility Requirements Deals with resources to change (adopt) software. How easily can it be updated with the new functionality. – May also involve a little perfective maintenance to perhaps do a little better due to the customers, perhaps slightly more robust environment. • 3. Testability Requirements. Deals with the testing of an information system as well as with its operation. – Are intermediate results of computations predefined to assist testing? – Are log files created? – Backup? – Example: Traceability
  • 14. • Portability • Reusability • Interoperability Product Transition Factors Can I move the app to different hardware ? Can I reuse major portions of the code with little modification to develop new apps ?
  • 15. McCall’s Quality Factors Category: Product Transition Software Quality Factors • 1. Portability Requirements: If the software ported to different environments (different hardware, operating systems) and still maintain an existing environment, then portability is used. • 2. Reusability Requirements: Deals with the using existing software components in a different context. • Are we able to reuse parts of the app for new applications? – Can save massive development costs due to errors found / tested.
  • 16. McCall’s Quality Factors Category: Product Transition Software Quality Factors • 3. Interoperability Requirements: Focus on creating interface with other existing systems. To which software components work together. Example: Firmware Web portal
  • 17. Alternatives • Some other SQA professionals have offered essentially renamed quality factors. • One has offered 12 factors; another 15 factors. • Totally five new factors were suggested • Evans and Marciniak offer two ‘new’ ones. – Verifiability – Expandability • Deutsch and Willis offer three ‘new’ ones. – Safety – Manageability – Survivability
  • 18. McCall's Factor Model and Alternative Models
  • 19. Evans and Marciniak Alternatives – 1. Verifiability Requirements Addresses design and programming features that allow for efficient verification of design and programming. • This does not refer to outputs, rather, structure of code, design elements and their dependencies, coupling, cohesion, patterns… – 2. Expandability Requirements The implementation takes future growth into consideration, refers to scalability and extensibility to provide more usability. • McCall’s flexibility
  • 20. Deutsch and Willis Alternatives –1. Safety Requirements: Meant to eliminate risky conditions as a result of errors in process control software, as in setting alarms or sounding warnings. •Especially important to process control / real time software such as that running conveyor belts or instrumentation for ordinance… –2. Manageability Requirements: Maintainability is a little similar with flexibility but it focuses on modifications about error corrections and minor function modifications, not major functional extensibilities. –3. Survivability Requirements: Is the ability to remain alive or continue to exist. Refer to MTBF(Mean time between failures), MTTR (Mean time to recover). • McCall’s Reliability.
  • 21. Alternatives – ISO 9126 Quality Model. – Boehm’s Quality Model. – Dromey's Quality Model. – FURPS Quality Model.
  • 23. Design Principles • Tunnel Vision • Traceable • Reinvent • Intellectual distance • Accommodate change • Degrade gently • Assessed quality • Conceptual errors
  • 24. Design Principles 1. Tunnel Vision: “The design process should not suffer from tunnel vision”. A good designer should consider alternative approaches, judging each based on the requirements of the problem. Example: “Smart Tunnels” can not turn back to exit to come back. 2. Traceable: “The design should be traceable to the analysis model”. Because a single element of the design model can often be traced back to multiple requirements, it is necessary to have a means for tracking how requirements have been satisfied by the design model. • Any Queries, Any confusion trace back
  • 25. Design Principles 3. Reinvent: “The design should not reinvent the wheel”. Systems are constructed using a set of design patterns. These patterns should always be chosen as an alternative to reinvention. Already Used, Tested too many times. 4. Intellectual distance: “The design should minimize the intellectual distance between the software and the problem as it exists in the real world”. The structure of the software design should mimic the structure of the domain. Example: ATM machine Ctrl + C
  • 26. Design Principles 5. Accommodate change: “The design should be structured to accommodate change”. Leave the space for change the design. To adopt new things. 6. Degrade gently: “The design should be structured to degrade gently, even when aberrant data, events, or operating conditions are encountered”. Well- designed software should never "bomb"; it should be designed to accommodate unusual circumstances, it should do in a graceful manner. WHAT WILL YOU DO WHEN SYSTEM IS GOING TO DIE ?
  • 27. Design Principles 7. Assessed quality: “The design should be assessed for quality as it is being created, not after the fact”. A variety of design concepts and quality attributes are available to assist the designer in measuring quality throughout the development process. 8. Conceptual errors: “The design should be reviewed to minimize conceptual errors”. Cohesion & coupling, ambiguity, inconsistency