SlideShare une entreprise Scribd logo
1  sur  75
Télécharger pour lire hors ligne
An Overview of Software
Code Quality and Connection
to Business Process Quality
Yann-Gaël Guéhéneuc
1st IEEE International Workshop on
Communicating Business Process
and Software Models
(Quality, Understandability, and Maintainability)

This work is licensed under a Creative
Commons Attribution-NonCommercialShareAlike 3.0 Unported License
2/75
3/75
Outline
 Example
 Introduction
 Trail
 Definitions
 Following

the Trail
 Conclusion

4/75
Introduction
 Software

total cost of ownership (TCO)
includes all the costs to acquire and keep a
program running, from specifications to
licenses to training

 Maintenance

contributes between 50% and

90% of TCO [Erlikh, Lientz]

5/75
Introduction
 Four

factors impact maintainers [ISO9126]

– Software analysability
• Their ability to identify and understand defects

– Software Changeability
• The effort needed to change the software

– Software Stability
• The sensitivity of the software to change

– Software Testability
• The effort needed to test the software
6/75
Introduction
 Two

factors impact software analysability

– Software quality characteristics
• ISO/IEC standards 9126:2001 and 25000:2005
decompose software quality into process quality,
product quality, and quality in use
– Software products are the output of software processes.
Product quality is determined by the degree to which the
developed software meets the defined requirements

– Developers’ characteristics
• Status, experience, education, gender
• …
7/75
Introduction
 Three

dimensions characterise software
quality characteristics
– Functional vs. non-functional
• At runtime vs. overall

– Internal vs. external
• Maintainability vs. understandability

– Metric-based vs. practice-based
• Objective vs. subjective

8/75
Introduction
 Three

dimensions characterise software
quality characteristics
– Functional vs. non-functional
• At runtime vs. overall

– Internal vs. external
• Maintainability vs. understandability

– Metric-based vs. practice-based
• Objective vs. subjective

9/75
Outline
 Example
 Introduction
 Trail
 Definitions
 Following

the Trail
 Conclusion

10/75
Trail
 In

this talk, we will discuss how to measure
the overall quality characteristics of
maintainability and understandability
objectively and subjectively

11/75
Trail
Metrics

Quality Models

Models

Good Practices

Definition

Maintainability
Understandability

Detection

Social Studies

Measures

Occurrences

Characteristics
Factors

Eye-tracking Studies

Behaviour

12/75
Outline
 Example
 Introduction
 Trail
 Definitions
 Following

the Trail
 Conclusion

13/75
Definitions
 Maintainability

– Ease with which a software system can be
modified [IEEE Standard Glossary of Software Engineering Terminology]
 Understandability

– Ease with which a software system can be
understood [Boehm]

14/75
Definitions
 Software

code artefacts

– Source code, such as Java
– UML-like models
–…



Labelled, weighted multi-graphs
15/75
Definitions
 Business

process artefacts

– Languages, such as BEPL
– BPMN
–…



Labelled, weighted multi-graphs
16/75
Outline
 Example
 Introduction
 Trail
 Definitions
 Following

the Trail
 Conclusion

17/75
Trail
Metrics

Quality Models

Models

Good Practices

Definition

Maintainability
Understandability

Detection

Social Studies

Measures

Occurrences

Characteristics
Factors

Eye-tracking Studies

Behaviour

18/75
Quality Models

Problem: how to measure software code artefacts?
Solution: define and use quality metrics and models

19/75
Quality Models
 Quality

models

– A model with the objective to describe, assess
and–or predict quality [Deissenboeck]
 Metrics
 Models

20/75
Quality Models
 Metrics

have been well researched since the
early days of software engineering
– Chidamber and Kemerer
– Hitz and Montazeri
– Lorenz and Kidd
– McCabe
–…

(Don’t miss Briand et al.’s surveys on the
metrics of cohesion and coupling)
21/75
Quality Models


Metrics alone are
meaningless
– Size vs. IQ
–…
– Hotness vs. IQ [Srivastava]

http://hardsci.wordpress.com/2013/09/17/the-hotness-iq-tradeoff-in-academia/

22/75
Quality Models
 Few

quality models exist

– Boehm’s
– ISO9126
– McCall’s
– QMOOD
–…

23/75
Quality Models
 Bansiya

and Davis’ QMOOD

– Hierarchical model for OO designs
– Structural and behavioural design properties of
classes, objects, and their relationships
• Reusability, flexibility, and complexity

– Object-oriented design metrics, such as
• Encapsulation, modularity, coupling, and cohesion

– Validated using empirical and expert opinion on
several large commercial systems
24/75
Quality Models
 Difficulty

to relate metric values with quality
characteristics, such as maintainability and
understandability

 Difficulty

to identify relevant metrics and
show that the metrics measure what they
are expected to measure

25/75
Quality Models
 Metrics

– 3QM-Framework [Overhage et al.]
– ProM [Vanderfeesten et al.]
 Models

There probably exist more?

26/75
Trail
Metrics

Quality Models

Models

Good Practices

Definition

Maintainability
Understandability

Detection

Social Studies

Measures

Occurrences

Characteristics
Factors

Eye-tracking Studies

Behaviour

27/75
Good Practices

Problem: how to identify good/bad practices?
Solution: collect and detect models of the practices

28/75
Good Practices
 Software

engineering development and
maintenance are based on a few principles
– SOLID
– Do not reinvent the wheel
– Beware of assumptions
–…

29/75
Good Practices
 Martin

and Feather’s SOLID

– Single responsibility
– Open/closed
– Liskov substitution
– Interface segregation
– Dependency inversion

(Don’t miss Michael Feather’s keynote on
Thursday on the software useful life)
30/75
Good Practices
Each pattern describes a problem which
occurs over and over again in our environment, and then describes the core of the
solution to that problem, in such way that
you can use this solution a million times
over, without ever doing it the same way
twice.
—Christopher Alexander, 1977
31/75
Good Practices
Important assumptions
– That patterns can be codified in such a way that
they can be shared between different designers.
– That reuse will lead to “better” designs. There is
an obvious question here of what constitutes
“better”, but a key measure is maintainability.

—Zhang and Budgen, 2012
(With minor adaptations)
32/75
Good Practices

33/75
Good Practices
 Design

Patterns

– A general reusable solution to a commonly
occurring problem within a given context in
software design
 Design

Antipatterns

– A design pattern that may be commonly used
but is ineffective/counterproductive in practice
34/75
Good Practices
 Pattern

solution = Motif which
connotes an
elegant architecture

35/75
Frame

DrawingEditor

Drawing

Handle

How to identify
in the architecture
of a program
micro-architectures
similar to
design motifs
to explain the
problem solved?

DrawingView

Tool

Good Practices

Panel

Figure

AbstractFigure

AttributeFigure

DecoratorFigure

PolyLineFigure

CompositeFigure

Figure

AttributeFigure

Component
Client

DecoratorFigure

PolyLineFigure

CompositeFigure

1..n

operation()

ramification
Leaf
operation()

Composite
add(Component)
remove(Component)
getComponent(int)
operation()

For each components
component.operation()

To compose objects
in a tree-like structure
to describe whole–part
hierarchies

36/75
Good Practices
 What

motifs and what model for these
motifs?

 What

 How

model for the program architecture?

to perform the identification?
37/75
Good Practices
 What

motifs and what model for these
motifs? Design motifs and a
motif meta-model

 What

 How

model for the program architecture?
Design Meta-model

to perform the identification?
38/75
Good Practices
 Multi-layer

framework for design motif
identification

 Information

retrieval

– Search space
– Query
– Results
39/75
Good Practices
framework
for design motif
identification

Model +
Associations,
aggregations,
and composition

 Multi-layer

Model +
Associations,
aggregations

Model

Code
40/75
Good Practices
 Constraint

satisfaction problem solved with
explanation-based constraint programming
(e-CP) to obtain
– No a priori descriptions of variations
– Justification of the identified micro-architectures
– Strong interaction with the developers

41/75
Good Practices – Example
 Design

motif (

)

Component
Client

1..n

operation()

ramification
Leaf
operation()

Composite
add(Component)
remove(Component)
getComponent(int)
operation()

For each components
component.operation()
42/75
Good Practices – Example
 Example

of JHotDraw

– Erich Gamma and Thomas Eggenschwiler
– 2D drawing
– Design patterns

43/75
Panel

DrawingEditor

DrawingView

Tool

Drawing

Handle

Good Practices – Example

Frame

Figure

AbstractFigure

AttributeFigure

DecoratorFigure

PolyLineFigure

CompositeFigure

44/75
Good Practices – Example
 Micro-architecture

(

)
Figure

AttributeFigure

DecoratorFigure

PolyLineFigure

CompositeFigure

 Maintainability
 Understandability
45/75
Frame

DrawingEditor

Client

Drawing

Handle

Component

DrawingView

Tool

e-CP

Panel

Figure

1..n

operation()

ramification
Leaf
operation()

Composite
add(Component)
remove(Component)
getComponent(int)
operation()

For each components
component.operation()

AbstractFigure

AttributeFigure

DecoratorFigure

PolyLineFigure

CompositeFigure

V = {component, leaf, composite}
C = {leaf < component, composite <
component, composite component}
D = {DrawingEditor, DrawingView…}
46/75
Frame

DrawingEditor

Client

Drawing

Handle

Component

DrawingView

Tool

e-CP

Panel

Figure

1..n

operation()

ramification
Leaf
operation()

Composite
add(Component)
remove(Component)
getComponent(int)
operation()

For each components
component.operation()

AbstractFigure

AttributeFigure

DecoratorFigure

PolyLineFigure

CompositeFigure

V = {component, leaf, composite}
<
<
C = {leaf < component, composite <
component, composite component}

D = {DrawingEditor, DrawingView…}
47/75
Good Practices




Search space
can
be very large and the
efficiency in time of the
search very low
Use metrics and
topology to reduce
the search space

48/75
Good Practices
 “Design”

patterns

– Workflow patterns [van der Aalst]
 “Design”

antipatterns

– In BPEL [Palma et al.]

More? Detection? Impact?

49/75
Trail
Metrics

Quality Models

Models

Good Practices

Definition

Maintainability
Understandability

Detection

Social Studies

Measures

Occurrences

Characteristics
Factors

Eye-tracking Studies

Behaviour

50/75
Social Studies

Problem: how to characterise developers?
Solution: study developers’ social behaviours

51/75
Social Studies
 Developers’

characteristics

– Gender
• Males vs. females

– Professional status
• Practitioner vs. Students

– Expertise
• Experts vs. novices

(Don’t miss the sessions Developers, What
are you Thinking? and Context)
52/75
Social Studies
 Such

studies are typically experiments

– Independent variable (few)
– Dependent variables (many)
– Statistical analyses
– Threats to validity

53/75
Social Studies
 For

example, impact on identifiers on
program understandability
– Identifier styles [Sharif, Binkley]
– Identifier quality [Lawrie]
– Developers’ gender and identifiers [Sharafi]
–…

54/75
Social Studies
 Independent

variables

– Gender: male vs. female
– Identifier: camel case vs. underscore
 Dependent

variables

– Accuracy
– Time
– Effort
55/75
Social Studies
 Subjects
Subjects’ Demography
(24 Subjects)
Academic background

Gender

Ph.D.

M.Sc.

B.Sc.

Male

Female

11

10

3

15

9

 Conclusions

Accuracy

Time

Effort
56/75
Social Studies
 Threats

to validity

– Construct validity
• Measurements represent the construct being studied

– Internal validity
• A causal conclusion based on the study is warranted

– External validity
• Extent to which the results of the study can be
generalised to other contexts or developers

– Conclusion validity
• Whether the presumed cause and effect covary
57/75
Social Studies
 Few

studies

– Notations [Recker, Reijers]
• Understandability
• Personal factors
• Model factors

– Structuredness [Dumas et al.]
• Understanding

– Others?

58/75
Trail
Metrics

Quality Models

Models

Good Practices

Definition

Maintainability
Understandability

Detection

Social Studies

Measures

Occurrences

Characteristics
Factors

Eye-tracking Studies

Behaviour

59/75
Eye-tracking Studies

Problem: how to study developers’ behaviour?
Solution: study developers’ thought processes

60/75
Eye-tracking Studies
 Developers’

thought processes

– Cognitive theories
•
•
•
•

Brooks’
Von Mayrhauser’s
Pennington’s
Soloway’s

– Memory theories
•
•
•
•

Kelly’s categories
Minsky’s frames
Piaget’s schema
Schank’s scripts

– Mental models
• Gentner and Stevens’ mental models
61/75
Eye-tracking Studies


Studying developers’
thought processes
– Yarbus’ eye-movements
and vision
– Just and Carpenter’s
eye-mind hypothesis
– Palmer’s vision science
–…

62/75
Eye-tracking Studies
 Picking

into developers’ thought processes

63/75
Eye-tracking Studies
 Picking

into developers’ thought processes

64/75
Eye-tracking Studies
 Such

studies are typically experiments

– Independent variable (few)
– Dependent variables (many)
– Statistical analyses
– Threats to validity

65/75
Eye-tracking Studies
 For

example, impact of design pattern
notations
– Strongly visual [Schauer and Keler]
– Strongly textual [Dong et al.]
– Mixed [Vlissides]
–…

66/75
Eye-tracking Studies
 Independent

variables

– Design pattern notations
– Tasks: Participation, Composition, Role
 Dependent

variables

– Average fixation duration
– Ratio of fixations
– Ration of fixation times

67/75
Eye-tracking Studies
 Subjects

– 24 Ph.D. and M.Sc. students
 Conclusions

– Stereotype-enhanced UML diagram [Dong et al.]
more efficient for Composition and Role
– UML collaboration notation and the patternenhanced class diagrams more efficient for
Participation
68/75
Eye-tracking Studies
 Threats

to validity

– Construct validity
– Internal validity
– External validity
– Conclusion validity

69/75
Eye-tracking Studies
 One

study

– Relevant regions [Petrusel and Mendling]
• Fixations
• Fixation time

– Others?
70/75
Outline
 Example
 Introduction
 Trail
 Definitions
 Following

the Trail
 Conclusion

71/75
Conclusion
 How

to measure the overall quality
characteristics of maintainability and
understandability objectively and
subjectively?

 Focus

on source code artefacts modelled as
graphs, business process can be modelled
as graphs too
72/75
Conclusion
 Software

code quality is based on the
modelling of code as graphs and on
– Quality metrics
– Quality models
– Good practices

and depends
– Experiences
– Human factors
73/75
Conclusion
 Business

process quality could also be
based on the modelling of business process
code as graphs and follow similar research
directions as source code?

74/75
Metrics

Quality Models

Models

Good Practices

Definition

Maintainability
Understandability

Detection

Social Studies

Measures

Occurrences

Characteristics
Factors

Eye-tracking Studies

Behaviour

75/75

Contenu connexe

Tendances

Software engineering mca
Software engineering mcaSoftware engineering mca
Software engineering mcaAman Adhikari
 
Sofware Engineering Important Past Paper 2019
Sofware Engineering Important Past Paper 2019Sofware Engineering Important Past Paper 2019
Sofware Engineering Important Past Paper 2019MuhammadTalha436
 
A defect prediction model based on the relationships between developers and c...
A defect prediction model based on the relationships between developers and c...A defect prediction model based on the relationships between developers and c...
A defect prediction model based on the relationships between developers and c...Vrije Universiteit Brussel
 
Software Engineering- Engineering Practice
Software Engineering- Engineering PracticeSoftware Engineering- Engineering Practice
Software Engineering- Engineering PracticeTrinity Dwarka
 
Software developer occupational brief
Software developer occupational briefSoftware developer occupational brief
Software developer occupational briefEnda Crossan
 
SE_Lec 00_ Software Engineering 1
SE_Lec 00_ Software Engineering 1SE_Lec 00_ Software Engineering 1
SE_Lec 00_ Software Engineering 1Amr E. Mohamed
 
Csqe sample exam 2 solutions 05.00.04
Csqe sample exam 2   solutions 05.00.04Csqe sample exam 2   solutions 05.00.04
Csqe sample exam 2 solutions 05.00.04binodrit98
 
software engineering
software engineeringsoftware engineering
software engineeringramyavarkala
 
Machine Learning Approach for Quality Assessment and Prediction in Large Soft...
Machine Learning Approach for Quality Assessmentand Prediction in Large Soft...Machine Learning Approach for Quality Assessmentand Prediction in Large Soft...
Machine Learning Approach for Quality Assessment and Prediction in Large Soft...RAKESH RANA
 
Quality and productivity factors
Quality and productivity factorsQuality and productivity factors
Quality and productivity factorsNancyBeaulah_R
 
Principles of Software Engineering @MyAssignmenthelp.com
Principles of Software Engineering @MyAssignmenthelp.comPrinciples of Software Engineering @MyAssignmenthelp.com
Principles of Software Engineering @MyAssignmenthelp.comMyAssignmenthelp.com
 

Tendances (18)

Establishing A Defect Prediction Model Using A Combination of Product Metrics...
Establishing A Defect Prediction Model Using A Combination of Product Metrics...Establishing A Defect Prediction Model Using A Combination of Product Metrics...
Establishing A Defect Prediction Model Using A Combination of Product Metrics...
 
A Regression Analysis Approach for Building a Prediction Model for System Tes...
A Regression Analysis Approach for Building a Prediction Model for System Tes...A Regression Analysis Approach for Building a Prediction Model for System Tes...
A Regression Analysis Approach for Building a Prediction Model for System Tes...
 
Software engineering mca
Software engineering mcaSoftware engineering mca
Software engineering mca
 
Sofware Engineering Important Past Paper 2019
Sofware Engineering Important Past Paper 2019Sofware Engineering Important Past Paper 2019
Sofware Engineering Important Past Paper 2019
 
Waterfall model
Waterfall modelWaterfall model
Waterfall model
 
A defect prediction model based on the relationships between developers and c...
A defect prediction model based on the relationships between developers and c...A defect prediction model based on the relationships between developers and c...
A defect prediction model based on the relationships between developers and c...
 
Slides chapter 15
Slides chapter 15Slides chapter 15
Slides chapter 15
 
Software Engineering- Engineering Practice
Software Engineering- Engineering PracticeSoftware Engineering- Engineering Practice
Software Engineering- Engineering Practice
 
Incremental
IncrementalIncremental
Incremental
 
Software developer occupational brief
Software developer occupational briefSoftware developer occupational brief
Software developer occupational brief
 
SE_Lec 00_ Software Engineering 1
SE_Lec 00_ Software Engineering 1SE_Lec 00_ Software Engineering 1
SE_Lec 00_ Software Engineering 1
 
Sandeep sharma cv
Sandeep sharma cvSandeep sharma cv
Sandeep sharma cv
 
Csqe sample exam 2 solutions 05.00.04
Csqe sample exam 2   solutions 05.00.04Csqe sample exam 2   solutions 05.00.04
Csqe sample exam 2 solutions 05.00.04
 
Slides chapters 21-23
Slides chapters 21-23Slides chapters 21-23
Slides chapters 21-23
 
software engineering
software engineeringsoftware engineering
software engineering
 
Machine Learning Approach for Quality Assessment and Prediction in Large Soft...
Machine Learning Approach for Quality Assessmentand Prediction in Large Soft...Machine Learning Approach for Quality Assessmentand Prediction in Large Soft...
Machine Learning Approach for Quality Assessment and Prediction in Large Soft...
 
Quality and productivity factors
Quality and productivity factorsQuality and productivity factors
Quality and productivity factors
 
Principles of Software Engineering @MyAssignmenthelp.com
Principles of Software Engineering @MyAssignmenthelp.comPrinciples of Software Engineering @MyAssignmenthelp.com
Principles of Software Engineering @MyAssignmenthelp.com
 

Similaire à 130924 yann-gael gueheneuc - an overview of software code quality and connection to business process quality

System Development
System  DevelopmentSystem  Development
System DevelopmentSharad Patel
 
15 object orienteddesign
15 object orienteddesign15 object orienteddesign
15 object orienteddesignrandhirlpu
 
Comparing Various SDLC Models On The Basis Of Available Methodology
Comparing Various SDLC Models On The Basis Of Available MethodologyComparing Various SDLC Models On The Basis Of Available Methodology
Comparing Various SDLC Models On The Basis Of Available MethodologyIJMER
 
software Processes
software Processessoftware Processes
software ProcessesSeif Shaame
 
unit-iipart-1.WDQWDQWDQWDQWDQWDQWDQWDQWDQWDppt
unit-iipart-1.WDQWDQWDQWDQWDQWDQWDQWDQWDQWDpptunit-iipart-1.WDQWDQWDQWDQWDQWDQWDQWDQWDQWDppt
unit-iipart-1.WDQWDQWDQWDQWDQWDQWDQWDQWDQWDpptWrushabhShirsat3
 
Presentation - Rational Unified Process
Presentation - Rational Unified ProcessPresentation - Rational Unified Process
Presentation - Rational Unified ProcessSharad Srivastava
 
View Alignment Techniques
View Alignment TechniquesView Alignment Techniques
View Alignment TechniquesJIGAR MAKHIJA
 
SE18_Lec 02_Software Life Cycle Model
SE18_Lec 02_Software Life Cycle ModelSE18_Lec 02_Software Life Cycle Model
SE18_Lec 02_Software Life Cycle ModelAmr E. Mohamed
 
se02_SW_Process.ppt
se02_SW_Process.pptse02_SW_Process.ppt
se02_SW_Process.pptNhân Công
 
Aginext 2021: Built-in Quality - How agile coaches can contribute
Aginext 2021: Built-in Quality - How agile coaches can contributeAginext 2021: Built-in Quality - How agile coaches can contribute
Aginext 2021: Built-in Quality - How agile coaches can contributeDerk-Jan de Grood
 

Similaire à 130924 yann-gael gueheneuc - an overview of software code quality and connection to business process quality (20)

System Development
System  DevelopmentSystem  Development
System Development
 
15 object orienteddesign
15 object orienteddesign15 object orienteddesign
15 object orienteddesign
 
Comparing Various SDLC Models On The Basis Of Available Methodology
Comparing Various SDLC Models On The Basis Of Available MethodologyComparing Various SDLC Models On The Basis Of Available Methodology
Comparing Various SDLC Models On The Basis Of Available Methodology
 
testing
testingtesting
testing
 
reaserch ppt.pptx
reaserch ppt.pptxreaserch ppt.pptx
reaserch ppt.pptx
 
I
II
I
 
software Processes
software Processessoftware Processes
software Processes
 
SE-03.pptx
SE-03.pptxSE-03.pptx
SE-03.pptx
 
Manualtestingppt
ManualtestingpptManualtestingppt
Manualtestingppt
 
Introduction & Manual Testing
Introduction & Manual TestingIntroduction & Manual Testing
Introduction & Manual Testing
 
unit-iipart-1.WDQWDQWDQWDQWDQWDQWDQWDQWDQWDppt
unit-iipart-1.WDQWDQWDQWDQWDQWDQWDQWDQWDQWDpptunit-iipart-1.WDQWDQWDQWDQWDQWDQWDQWDQWDQWDppt
unit-iipart-1.WDQWDQWDQWDQWDQWDQWDQWDQWDQWDppt
 
Presentation - Rational Unified Process
Presentation - Rational Unified ProcessPresentation - Rational Unified Process
Presentation - Rational Unified Process
 
View Alignment Techniques
View Alignment TechniquesView Alignment Techniques
View Alignment Techniques
 
SE18_Lec 02_Software Life Cycle Model
SE18_Lec 02_Software Life Cycle ModelSE18_Lec 02_Software Life Cycle Model
SE18_Lec 02_Software Life Cycle Model
 
3 analysis and design overview
3 analysis and design overview3 analysis and design overview
3 analysis and design overview
 
SDLC Models
SDLC ModelsSDLC Models
SDLC Models
 
Slides chapter 3
Slides chapter 3Slides chapter 3
Slides chapter 3
 
Slides chapter 3
Slides chapter 3Slides chapter 3
Slides chapter 3
 
se02_SW_Process.ppt
se02_SW_Process.pptse02_SW_Process.ppt
se02_SW_Process.ppt
 
Aginext 2021: Built-in Quality - How agile coaches can contribute
Aginext 2021: Built-in Quality - How agile coaches can contributeAginext 2021: Built-in Quality - How agile coaches can contribute
Aginext 2021: Built-in Quality - How agile coaches can contribute
 

Plus de Ptidej Team

From IoT to Software Miniaturisation
From IoT to Software MiniaturisationFrom IoT to Software Miniaturisation
From IoT to Software MiniaturisationPtidej Team
 
Presentation by Lionel Briand
Presentation by Lionel BriandPresentation by Lionel Briand
Presentation by Lionel BriandPtidej Team
 
Manel Abdellatif
Manel AbdellatifManel Abdellatif
Manel AbdellatifPtidej Team
 
Azadeh Kermansaravi
Azadeh KermansaraviAzadeh Kermansaravi
Azadeh KermansaraviPtidej Team
 
CSED - Manel Grichi
CSED - Manel GrichiCSED - Manel Grichi
CSED - Manel GrichiPtidej Team
 
Cristiano Politowski
Cristiano PolitowskiCristiano Politowski
Cristiano PolitowskiPtidej Team
 
Will io t trigger the next software crisis
Will io t trigger the next software crisisWill io t trigger the next software crisis
Will io t trigger the next software crisisPtidej Team
 
Thesis+of+laleh+eshkevari.ppt
Thesis+of+laleh+eshkevari.pptThesis+of+laleh+eshkevari.ppt
Thesis+of+laleh+eshkevari.pptPtidej Team
 
Thesis+of+nesrine+abdelkafi.ppt
Thesis+of+nesrine+abdelkafi.pptThesis+of+nesrine+abdelkafi.ppt
Thesis+of+nesrine+abdelkafi.pptPtidej Team
 

Plus de Ptidej Team (20)

From IoT to Software Miniaturisation
From IoT to Software MiniaturisationFrom IoT to Software Miniaturisation
From IoT to Software Miniaturisation
 
Presentation
PresentationPresentation
Presentation
 
Presentation
PresentationPresentation
Presentation
 
Presentation
PresentationPresentation
Presentation
 
Presentation by Lionel Briand
Presentation by Lionel BriandPresentation by Lionel Briand
Presentation by Lionel Briand
 
Manel Abdellatif
Manel AbdellatifManel Abdellatif
Manel Abdellatif
 
Azadeh Kermansaravi
Azadeh KermansaraviAzadeh Kermansaravi
Azadeh Kermansaravi
 
Mouna Abidi
Mouna AbidiMouna Abidi
Mouna Abidi
 
CSED - Manel Grichi
CSED - Manel GrichiCSED - Manel Grichi
CSED - Manel Grichi
 
Cristiano Politowski
Cristiano PolitowskiCristiano Politowski
Cristiano Politowski
 
Will io t trigger the next software crisis
Will io t trigger the next software crisisWill io t trigger the next software crisis
Will io t trigger the next software crisis
 
MIPA
MIPAMIPA
MIPA
 
Thesis+of+laleh+eshkevari.ppt
Thesis+of+laleh+eshkevari.pptThesis+of+laleh+eshkevari.ppt
Thesis+of+laleh+eshkevari.ppt
 
Thesis+of+nesrine+abdelkafi.ppt
Thesis+of+nesrine+abdelkafi.pptThesis+of+nesrine+abdelkafi.ppt
Thesis+of+nesrine+abdelkafi.ppt
 
Medicine15.ppt
Medicine15.pptMedicine15.ppt
Medicine15.ppt
 
Qrs17b.ppt
Qrs17b.pptQrs17b.ppt
Qrs17b.ppt
 
Icpc11c.ppt
Icpc11c.pptIcpc11c.ppt
Icpc11c.ppt
 
Icsme16.ppt
Icsme16.pptIcsme16.ppt
Icsme16.ppt
 
Msr17a.ppt
Msr17a.pptMsr17a.ppt
Msr17a.ppt
 
Icsoc15.ppt
Icsoc15.pptIcsoc15.ppt
Icsoc15.ppt
 

Dernier

08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 

Dernier (20)

08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 

130924 yann-gael gueheneuc - an overview of software code quality and connection to business process quality