å°Šę•¬ēš„ å¾®äæ”걇ēŽ‡ļ¼š1円 ā‰ˆ 0.046166 元 ę”Æä»˜å®ę±‡ēŽ‡ļ¼š1円 ā‰ˆ 0.046257元 [退å‡ŗē™»å½•]
SlideShare a Scribd company logo
JBIMS MIM SEM V ā€“ 2015-2018
15-I-131 ā€“ MUFADDAL NULLWALA
ļ‚ž What is Quality
ļ‚ž Software Quality Metrics
ļ‚ž Types of Software Quality Metrics
ļ‚ž Three groups of Software Quality Metrics
ļ‚ž Difference Between Errors, Defects, Faults, and Failures
ļ‚ž Lines of code
ļ‚ž Function Point
ļ‚ž Feature Point
ļ‚ž Customer Satisfaction Metrics
ļ‚ž Tools used for Quality Metrics/Measurements
ļ‚ž PERT and CPM
ļ‚ž Who Are we ?
ļ‚ž What we do ?
ļ‚ž Why makes us do that?
Identify
Indicators
Money
Tools to
Capture
Indicators
Take
Corrective
Actions
Process
Customer
satisfaction
People
Innovation
Monitoring
& Analysis
ļ‚ž The subset of metrics that focus on quality
ļ‚ž Software quality metrics can be divided into:
ā—¼End-product quality metrics
ā—¼In-process quality metrics
ļ‚ž The essence of software quality engineering
is to investigate the relationships among in-
process metric, project characteristics , and
end-product quality, and, based on the
findings, engineer improvements in quality to
both the process and the product.
ļ‚ž Software metrics are used to obtain objective
reproducible measurements that can be useful for
quality assurance, performance, debugging,
management, and estimating costs.
ļ‚ž Finding defects in code (post release and prior to
release), predicting defective code, predicting
project success, and predicting project risk .
ļ‚ž Product metrics ā€“ e.g., size, complexity,
design features, performance, quality level
ļ‚ž Process metrics ā€“ e.g., effectiveness of
defect removal, response time of the fix
process
ļ‚ž Project metrics ā€“ e.g., number of software
developers, cost, schedule, productivity
ļ‚ž Product quality
ļ‚ž In-process quality
ļ‚ž Maintenance quality
ļ‚ž Product Quality Matrices
ļ‚ž Intrinsic product quality
ā—¼Mean time to failure
ā—¼Defect density
ļ‚ž Customer related
ā—¼Customer problems
ā—¼Customer satisfaction
ļ‚ž Intrinsic product quality is usually measured
by:
ā—¼the number of ā€œbugsā€ (functional defects) in the
software (defect density), or
ā—¼how long the software can run before ā€œcrashingā€
(MTTF ā€“ mean time to failure)
ļ‚ž The two metrics are correlated but different
ļ‚ž An error is a human mistake that results in
incorrect software.
ļ‚ž The resulting fault is an accidental condition
that causes a unit of the system to fail to
function as required.
ļ‚ž A defect is an anomaly in a product.
ļ‚ž A failure occurs when a functional unit of a
software-related system can no longer perform
its required function or cannot perform it within
specified limits
ļ‚ž This metric is the number of defects over the
opportunities for error (OPE) during some
specified time frame.
ļ‚ž We can use the number of unique causes of
observed failures (failures are just defects
materialized) to approximate the number of
defects.
ļ‚ž The size of the software in either lines of
code or function points is used to
approximate OPE.
ļ‚ž Lines of Code or LOC is a quantitative
measurement in computer programming for
files that contains code from a computer
programming language, in text form.
ļ‚ž The number of lines indicates the size of a
given file and gives some indication of the
work involved.
ļ‚ž It is used as the Unit of Sizing of the
Software
Metric Supported as Description
Physical lines LINES
This metric counts the physical lines, but
excludes classic VB form definitions and
attributes.
Physical lines of code (notĀ supported)
This type of a metric counts the lines but
excludes empty lines and comments. This is
sometimes referred to as the sourceĀ linesĀ ofĀ 
code (sLOC) metric.
Logical lines LLINES
A logicalĀ line covers one or more physical lines.
Two or more physical lines can be joined as one
logical line with the line continuation sequence "
_". The LLINES metric counts a joined line just
once regardless of how many physical lines there
are in it.
Logical lines of code LLOC
A logical line of code is one that contains actual
source code. An empty line or a comment line is
not counted in LLOC.
Statements STMT
This is not a line count, but a statement count.
Visual Basic programs typically contain one
statement per line of code. However, it's possible
to put several statements on one line by using
the colon ":" or writing single-line If..Then
statements.
LINES = Number of lines
This is the simplest line count, LINES counts every line, be it
a code, a comment or an empty line.
Maximum procedure length
Max 66 linesLINES <= 66. The procedure fits on one page
when printed.
Max 150 linesLINES <= 150. A recommendation for Java.
Max 200 linesLINES <= 200. The procedure fits on 3 pages.
Maximum file length
Max 1000 linesLINES <= 1000. This file size accommodates 15
one-page procedures or 100 short 10-line procedures.
Max 2000 linesLINES <= 2000. A recommendation for Java.
LLOC = Number of logical lines of code
LLOC counts all logical lines except the following:
ā¦æFull comment lines
ā¦æWhitespace lines
ā¦æLines excluded by compiler conditional directives
Maximum acceptable LLOC
Procedure LLOC <= 50
Class LLOC <= 1500
File LLOC <= 2000
Minimum acceptable LLOC
Procedure LLOC >= 3
Class LLOC >= 3
File LLOC >= 1
Function points are a unit measure for software
much like an hour is to measuring time, miles are
to measuring distance or Celsius is to measuring
temperature.Ā Ā 
Function Point Analysis, systems are divided into
five large classes and general system
characteristics:
ā¦æExternal Inputs
ā¦æExternal Outputs
ā¦æExternal Inquires
ā¦æLogical Files
ā¦æExternal Interface Files
Transactions
Logical
Information
ā¦æ External Inputs (EI):
It is an elementary process in which data crosses
the boundary from outside to inside.Ā Ā This data
may come from a data input screen or another
application. The data may be used to maintain
one or more internal logical files.Ā Ā The data can
be either control information or business
information.Ā The graphic represents a simple EI
that updates 2 ILF's (FTR's).
ā¦æ External Outputs (EO):
Is an elementary process in which derived data passes
across the boundary from inside to outside.Ā Ā Ā Additionally,
an EO may update an ILF.Ā Ā The data creates reports or
output files sent to other applications.Ā Ā These reports and
files are created from one or more internal logical files
and external interface file.Ā  The following graphic
represents on EO with 2 FTR's there is derived information
(green) that has been derived from the ILF's
ā¦æ External Inquiry (EQ)
An elementary process with both input and
output components that result in data retrieval
from one or more internal logical files and
external interface files.Ā Ā The input process does
not update any Internal Logical Files, and the
output side does not contain derived data. The
graphic below represents an EQ with two ILF's
and no derived data.
ā¦æ Internal Logical Files (ILFā€™s)Ā - a user
identifiable group of logically related data
that resides entirely within the applications
boundary and is maintained through external
inputs.
ā¦æ External Interface Files (EIFā€™s)Ā - a user
identifiable group of logically related data
that is used for reference purposes only. The
data resides entirely outside the application
and is maintained by another application.
The external interface file is an internal
logical file for another application.
ā¦æ After the components have been classified as
one of the five major components (EIā€™s, EOā€™s,
EQā€™s, ILFā€™s or EIFā€™s), a ranking of low, average or
high is assigned.
ā¦æ The counts for each level of complexity for each
type of component can be entered into a table
such as the following one.
ā¦æ The value adjustment factor (VAF) is based on 14 general system
characteristics (GSC's) that rate the general functionality of the
application being counted. Each characteristic has associated
descriptions that help determine the degrees of influence of the
characteristics.
ā¦æ Once all the 14 GSCā€™s have been answered, they should
be tabulated using the IFPUG Value Adjustment
Equation (VAF)
VAF = 0.65 + [ (Ci) / 100]
Ā  Ci = degree of influence for each General System
Characteristic
0.65 may vary as per requirements
ā¦æ The final Function Point Count is obtained by
multiplying the VAF times the Unadjusted Function
Point (UAF).
Ā  FP = UAF * VAF
ā¦æFeature point metrics is software estimation technique where
identification of different features of the software and estimate
cost based on features.
ļ±Software for engineering and embedded systems/applications.
ļ±Software where application complexity is high.
ļ±For example SAP ERP package have different features for purchasing
process :
o Creation of Purchase Order/Automatic availability check of stock for warehouse/plant
o Creation of Purchase requisition/Conversion of purchase requisition into purchase order
o Purchase order release strategy using purchase organization structure.
o Transfer order creation for stock movement with LIFO(last in first out)/FIFO(first in first
out) strategies.
ļ‚— Feature point (external)
Feature pointFeature point
Function point (Internal ex :
f1,f2,f3, etc.)
ā¦æ It includes a new software characteristics : ā€œAlgorithmsā€.
ā¦æ Steps to get feature point of software as below :
ļ± Count feature points
ļ± Continue the feature point count by counting the number of algorithms
ļ± Weigh complexity.
ļ± Evaluate environmental factors
ļ± Calculate the complexity adjustment factor.
ļ± Multiply the raw feature point count by the complexity adjustment factor
ā¦æ Another feature point metrics developed by Boeing :
ā€œIntegrate Data Dimension of Software with functional and
control dimensionsā€ known as 3D function Point
ā¦æ Boeing 3D 787 Dreamliner Live Flight Tracker
Hybrid system such as :
ā‘ Stock Control system with Heavy communication
ā‘ Cooling system control process
ā‘ Update Control Group
ā‘ Read only Control Group
ā‘ External Control Data
ā¦æ Real time software typically contains large number of
single occurrence groups of data
Software with
different functions
point (ex :
f1(),f2(),f3() etc.)
Fto1Fti1
Fti2
Input Output
Fto2
ā¦æ An engine temperature control process (process with a
few sub- processes)
Steps follows as below :
ā¦æ
Output : Turn on Cooling system when required
ā¦æ Feature point metrics are language or platform
independent.
ā¦æ Easily computed from the SRS(Software requirements
specification ) during project planning.
ā¦æ It gives an idea of ā€œEffortā€ and ā€œTimeā€ for software
project estimation.
Customer
Satisfaction
Issues
Customer
Problems
Defects
ā¦æ Customer satisfaction is often measured by
customer survey data via the five-point
scale:
ā—¼Very satisfied
ā—¼Satisfied
ā—¼Neutral
ā—¼Dissatisfied
ā—¼Very dissatisfied
ā¦æ CUPRIMDSO
ā—¼ Capability (functionality)
ā—¼ Usability
ā—¼ Performance
ā—¼ Reliability
ā—¼ Installability
ā—¼ Maintainability
ā—¼ Documentation
ā—¼ Service
ā—¼ Overall
ā¦æ FURPS
ā—¼Functionality
ā—¼Usability
ā—¼Reliability
ā—¼Performance
ā—¼Service
ā¦æ Percent of completely satisfied customers
ā¦æ Percent of satisfied customers (satisfied and
completely satisfied)
ā¦æ Percent of dissatisfied customers (dissatisfied and
completely dissatisfied)
ā¦æ Percent of non-satisfied customers (neutral,
dissatisfied, and completely dissatisfied)
ā¦æ Defect density during machine testing
ā¦æ Defect arrival pattern during machine testing
ā¦æ Phase-based defect removal pattern
ā¦æ Defect removal effectiveness
ā¦æ Defect rate during formal machine testing
(testing after code is integrated into the
system library) is usually positively
correlated with the defect rate in the field.
ā¦æ The simple metric of defects per KLOC or
function point is a good indicator of quality
while the product is being tested.
ā¦æ Scenarios for judging release quality:
ā—¼If the defect rate during testing is the same or
lower than that of the previous release, then
ask: Does the testing for the current release
deteriorate?
ā€¢ If the answer is no, the quality perspective is positive.
ā€¢ If the answer is yes, you need to do extra testing.
ā¦æ Scenarios for judging release quality
(contā€™d):
ā—¼If the defect rate during testing is substantially
higher than that of the previous release, then
ask: Did we plan for and actually improve testing
effectiveness?
ā€¢ If the answer is no, the quality perspective is
negative.
ā€¢ If the answer is yes, then the quality perspective is
the same or positive.
ā¦æ The pattern of defect arrivals gives more
information than defect density during
testing.
ā¦æ The objective is to look for defect arrivals
that stabilize at a very low level, or times
between failures that are far apart before
ending the testing effort and releasing the
software.
ā¦æ The defect arrivals during the testing phase by
time interval (e.g., week). These are raw
arrivals, not all of which are valid.
ā¦æ The pattern of valid defect arrivals ā€“ when
problem determination is done on the reported
problems. This is the true defect pattern.
ā¦æ The pattern of defect backlog over time. This
is needed because development organizations
cannot investigate and fix all reported
problems immediately. This metric is a
workload statement as well as a quality
statement.
ā¦æ This is similar to test defect density metric.
ā¦æ It requires tracking defects in all phases of
the development cycle.
ā¦æ The pattern of phase-based defect removal
reflects the overall defect removal ability of
the development process.
ā¦æ DRE = (Defects removed during a
development phase <divided by> Defects
latent in the product) x 100%
ā¦æ The denominator can only be approximated.
ā¦æ It is usually estimated as:
Defects removed during the phase +
Defects found later
ā¦æ When done for the front end of the process
(before code integration), it is called early
defect removal effectiveness.
ā¦æ When done for a specific phase, it is called
phase effectiveness.
ā¦æ The goal during maintenance is to fix the
defects as soon as possible with excellent fix
quality
ā¦æ The following metrics are important:
ā—¼Fix backlog and backlog management index
ā—¼Fix response time and fix responsiveness
ā—¼Percent delinquent fixes
ā—¼Fix quality
ā¦æ Cause and Effect Diagrams
ā¦æ Flow Charts
ā¦æ Checksheets
ā¦æ Histograms
ā¦æ Pareto Charts
ā¦æ Control Charts
ā¦æ Scatter Diagrams
Purpose:
Graphical representation of the trail leading to the root cause of a problem
How is it done?
ā—Decide which quality characteristic, outcome or effect you want to examine
(may use Pareto chart)
ā—Backbone ā€“draw straight line
ā—Ribs ā€“ categories
ā—Medium size bones ā€“secondary causes
ā—Small bones ā€“ root causes
Benefits:
ā—Breaks problems down into bite-size pieces to find root cause
ā—Fosters team work
ā—Common understanding of factors causing the problem
ā—Road map to verify picture of the process
ā—Follows brainstorming relationship
Purpose:
Visual illustration of the sequence of operations required to complete a task
āœ“ Schematic drawing of the process to measure or improve.
āœ“ Starting point for process improvement
āœ“ Potential weakness in the process are made visual.
āœ“ Picture of process as it should be.
How is it done?
ā¦æTopdown:
ā— List major steps
ā— Write them across top of the chart
ā— List sub-steps under each in order they occur
ā— Linear:
ā— Write the process step inside each symbol
ā— Connect the Symbols with arrows showing the direction of flow
Benefits:
ā— Identify process improvements
ā— Understand the process
ā— Shows duplicated effort and other non-value-added steps
ā— Clarify working relationships between people and organizations
ā— Target specific steps in the process for improvement.
Purpose:
ā—¼ Tool for collecting and organizing measured or counted data
ā—¼ Data collected can be used as input data for other quality tools
How is it done?
ā—¼ Decide what event or problem will be observed. Develop operational
definitions.
ā—¼ Decide when data will be collected and for how long.
ā—¼ Design the form. Set it up so that data can be recorded simply by making
check marks.
ā—¼ Label all spaces on the form.
ā—¼ Each time the targeted event or problem occurs, record data on the check
sheet.
Benefits:
ā—¼ Collect data in a systematic and organized manner
ā—¼ To determine source of problem
ā—¼ To facilitate classification of data
Purpose:
To determine the spread or variation of a set of data points in a graphical form
How is it done?
ā— Collect data, 50-100 data point
ā— Determine the range of the data
ā— Calculate the size of the class interval
ā— Divide data points into classes
ā— Determine the class boundary
ā— Count # of data points in each class
ā— Draw the histogram
Benefits:
ā— Allows you to understand at a glance the variation that exists in a process
ā— The shape of the histogram will show process behavior
ā— Often, it will tell you to dig deeper for otherwise unseen causes of variation.
ā— The shape and size of the dispersion will help identify otherwise hidden
sources of variation
ā— Used to determine the capability of a process
ā— Starting point for the improvement process
Purpose:
A Pareto chart is a bar graph and depicts which situations are
more significant. Prioritize problems.
How is it done?
ā¦æ Create a preliminary list of problem classifications.
ā¦æ Tally the occurrences in each problem classification.
ā¦æ Arrange each classification in order from highest to lowest
ā¦æ Construct the bar chart
Benefits:
ā¦æ Pareto analysis helps graphically display results
so the significant few problems emerge from the
general background
ā¦æ It tells you what to work on first
Purpose:
The primary purpose of a control chart is to predict expected product
outcome. The control chart is a graph used to study how a process changes
over time.
How is it done?
Control Chart Decision Tree:
ā—¼ Determine Sample size (n)
ā—¼ Variable or Attribute Data
ā€¢ Variable is measured on a continuous scale
ā€¢ Attribute is occurrences in n observations
ā—¼ Determine if sample size is constant or changing
Benefits:
ā—¼ Predict process out of control and out of specification limits
ā—¼ Distinguish between specific, identifiable causes of variation
ā—¼ Can be used for statistical process control
Purpose:
The scatter diagram graphs pairs of numerical data, with
one variable on each axis, to look for a relationship
between them.Ā 
How is it done?
ā— Decide which paired factors you want to
examine. Both factors must be measurable on
some incremental linear scale.
ā— Collect 30 to 100 paired data points.
ā— Find the highest and lowest value for both
variables.
ā— Draw the vertical (y) and horizontal (x) axes of a
graph.
ā— Plot the data
The shape that the cluster of dots takes will tell you
something about the relationship between the two
variables that you tested.
Benefits:
ā—Helps identify and test probable causes.
ā—By knowing which elements of your process are related
and how they are related, you will know what to control or
what to vary to affect a quality characteristic.
ā¦æ Prediction of deliverables
ā¦æ Planning resource requirements
ā¦æ Controlling resource allocation
ā¦æ Internal program review
ā¦æ External program review
ā¦æ Performance evaluation
ā¦æ Uniform wide acceptance
A basic CPM Diagram
ā¦æ Define the Project. The Project should have only
a single start activity and a single finish activity.
ā¦æ Develop the relationships among the activities.
ā¦æ Draw the "Network" connecting all the activities.
ā¦æ Assign time and/or cost estimates to each
activity
ā¦æ Compute the critical path.
ā¦æ Use the Network to help plan, schedule, monitor
and control the project.
ā¦æ Draw the CPM network
ā¦æ Analyze the paths through the network
ā¦æ Determine the float for each activity
ā¦æ Compute the activityā€™s float
ā¦æ float = LS - ES = LF - EF
ā¦æ Float is the maximum amount of time that this
activity can be delay in its completion before it
becomes a critical activity, i.e., delays completion
of the project
ā¦æ Find the critical path is that the sequence of
activities and events where there is no ā€œslackā€
i.e.. Zero slack
ā¦æ Longest path through a network
ā¦æ Find the project duration is minimum project
completion time
ā¦æ Draw the network.
ā¦æ Analyze the paths through the network and find the critical
path.
ā¦æ The length of the critical path is the mean of the project
duration probability distribution which is assumed to be normal
ā¦æ The standard deviation of the project duration probability
distribution is computed by adding the variances of the critical
activities (all of the activities that make up the critical path)
and taking the square root of that sum
ā¦æ Probability computations can now be made using the normal
distribution table.
ā¦æ Determine probability that project is completed within specified
time
where Āµ = tp = project mean time
Ļƒ = project standard mean time
x = (proposed ) specified time
Z = x - Āµ
Ļƒ
PERT CPM
Advantages:
ā¦æReduction in cost
ā¦æMinimization of Risk in complex activity
ā¦æFlexibility
ā¦æOptimization of resources
ā¦æReduction in Uncertainty
Disadvantages:
ā¦æNetworks charts tend to be large
ā¦æLack of timeframe in charts ,leads to difficulty in
showing status
ā¦æSkillful Personnel required for
planning/implementation

More Related Content

What's hot

Software quality assurance
Software quality assuranceSoftware quality assurance
Software quality assurance
Aman Adhikari
Ā 
Software Testing and Quality Assurance Assignment 3
Software Testing and Quality Assurance Assignment 3Software Testing and Quality Assurance Assignment 3
Software Testing and Quality Assurance Assignment 3
Gurpreet singh
Ā 
Software maintenance Unit5
Software maintenance  Unit5Software maintenance  Unit5
Software maintenance Unit5
Mohammad Faizan
Ā 
Agile Methodology - Software Engineering
Agile Methodology - Software EngineeringAgile Methodology - Software Engineering
Agile Methodology - Software Engineering
Purvik Rana
Ā 
Software development life cycle (SDLC)
Software development life cycle (SDLC)Software development life cycle (SDLC)
Software development life cycle (SDLC)
Simran Kaur
Ā 
Software Process Models
Software Process ModelsSoftware Process Models
Software Process Models
Hassan A-j
Ā 
Organization and team structures
Organization and team structuresOrganization and team structures
Organization and team structures
Nur Islam
Ā 
Software Metrics
Software MetricsSoftware Metrics
Software Metrics
swatisinghal
Ā 
Risk management(software engineering)
Risk management(software engineering)Risk management(software engineering)
Risk management(software engineering)
Priya Tomar
Ā 
Cohesion and coupling
Cohesion and couplingCohesion and coupling
Cohesion and coupling
Aprajita (Abbey) Singh
Ā 
Metrics for project size estimation
Metrics for project size estimationMetrics for project size estimation
Metrics for project size estimation
Nur Islam
Ā 
Agile development, software engineering
Agile development, software engineeringAgile development, software engineering
Agile development, software engineering
Rupesh Vaishnav
Ā 
Software process and project metrics
Software process and project metricsSoftware process and project metrics
Software process and project metrics
Indu Sharma Bhardwaj
Ā 
Static analysis
Static analysisStatic analysis
Static analysis
GowriLatha1
Ā 
Software requirements
Software requirementsSoftware requirements
Software requirements
Dr. Loganathan R
Ā 
SOFTWARE TESTING
SOFTWARE TESTINGSOFTWARE TESTING
SOFTWARE TESTING
Priyanka Karancy
Ā 
Chapter 13 software testing strategies
Chapter 13 software testing strategiesChapter 13 software testing strategies
Chapter 13 software testing strategies
SHREEHARI WADAWADAGI
Ā 
Lecture 12 requirements modeling - (system analysis)
Lecture 12   requirements modeling - (system analysis)Lecture 12   requirements modeling - (system analysis)
Lecture 12 requirements modeling - (system analysis)
IIUI
Ā 
Software Cost Estimation Techniques
Software Cost Estimation TechniquesSoftware Cost Estimation Techniques
Software Cost Estimation Techniques
Santhi thi
Ā 
Project Planning in Software Engineering
Project Planning in Software EngineeringProject Planning in Software Engineering
Project Planning in Software Engineering
FƔber D. Giraldo
Ā 

What's hot (20)

Software quality assurance
Software quality assuranceSoftware quality assurance
Software quality assurance
Ā 
Software Testing and Quality Assurance Assignment 3
Software Testing and Quality Assurance Assignment 3Software Testing and Quality Assurance Assignment 3
Software Testing and Quality Assurance Assignment 3
Ā 
Software maintenance Unit5
Software maintenance  Unit5Software maintenance  Unit5
Software maintenance Unit5
Ā 
Agile Methodology - Software Engineering
Agile Methodology - Software EngineeringAgile Methodology - Software Engineering
Agile Methodology - Software Engineering
Ā 
Software development life cycle (SDLC)
Software development life cycle (SDLC)Software development life cycle (SDLC)
Software development life cycle (SDLC)
Ā 
Software Process Models
Software Process ModelsSoftware Process Models
Software Process Models
Ā 
Organization and team structures
Organization and team structuresOrganization and team structures
Organization and team structures
Ā 
Software Metrics
Software MetricsSoftware Metrics
Software Metrics
Ā 
Risk management(software engineering)
Risk management(software engineering)Risk management(software engineering)
Risk management(software engineering)
Ā 
Cohesion and coupling
Cohesion and couplingCohesion and coupling
Cohesion and coupling
Ā 
Metrics for project size estimation
Metrics for project size estimationMetrics for project size estimation
Metrics for project size estimation
Ā 
Agile development, software engineering
Agile development, software engineeringAgile development, software engineering
Agile development, software engineering
Ā 
Software process and project metrics
Software process and project metricsSoftware process and project metrics
Software process and project metrics
Ā 
Static analysis
Static analysisStatic analysis
Static analysis
Ā 
Software requirements
Software requirementsSoftware requirements
Software requirements
Ā 
SOFTWARE TESTING
SOFTWARE TESTINGSOFTWARE TESTING
SOFTWARE TESTING
Ā 
Chapter 13 software testing strategies
Chapter 13 software testing strategiesChapter 13 software testing strategies
Chapter 13 software testing strategies
Ā 
Lecture 12 requirements modeling - (system analysis)
Lecture 12   requirements modeling - (system analysis)Lecture 12   requirements modeling - (system analysis)
Lecture 12 requirements modeling - (system analysis)
Ā 
Software Cost Estimation Techniques
Software Cost Estimation TechniquesSoftware Cost Estimation Techniques
Software Cost Estimation Techniques
Ā 
Project Planning in Software Engineering
Project Planning in Software EngineeringProject Planning in Software Engineering
Project Planning in Software Engineering
Ā 

Similar to Software Quality Metrics

Function points and elements
Function points and elementsFunction points and elements
Function points and elements
Busi Sreedhaar Reddy
Ā 
Function point analysis
Function point analysisFunction point analysis
Function point analysis
Rosu Gabi
Ā 
Ijetr011834
Ijetr011834Ijetr011834
Ijetr011834
ER Publication.org
Ā 
DHS - Using functions points to estimate agile development programs (v2)
DHS - Using functions points to estimate agile development programs (v2)DHS - Using functions points to estimate agile development programs (v2)
DHS - Using functions points to estimate agile development programs (v2)
Glen Alleman
Ā 
Software Size Estimation
Software Size EstimationSoftware Size Estimation
Software Size Estimation
Muhammad Asim
Ā 
Estimation
EstimationEstimation
Estimation
Rushikesh Bhongade
Ā 
Cost estimation techniques
Cost estimation techniquesCost estimation techniques
Cost estimation techniques
lokareminakshi
Ā 
Chapter 12
Chapter 12Chapter 12
Chapter 12
sarath1992
Ā 
Function Point Analysis
Function Point AnalysisFunction Point Analysis
Function Point Analysis
Araf Karsh Hamid
Ā 
Ju2517321735
Ju2517321735Ju2517321735
Ju2517321735
IJERA Editor
Ā 
Ju2517321735
Ju2517321735Ju2517321735
Ju2517321735
IJERA Editor
Ā 
Chapter 11 Metrics for process and projects.ppt
Chapter 11  Metrics for process and projects.pptChapter 11  Metrics for process and projects.ppt
Chapter 11 Metrics for process and projects.ppt
ssuser3f82c9
Ā 
Dot Net performance monitoring
 Dot Net performance monitoring Dot Net performance monitoring
Dot Net performance monitoring
Kranthi Paidi
Ā 
Software Metrics - Software Engineering
Software Metrics - Software EngineeringSoftware Metrics - Software Engineering
Software Metrics - Software Engineering
Drishti Bhalla
Ā 
Estimation Techniques V1.0
Estimation Techniques V1.0Estimation Techniques V1.0
Estimation Techniques V1.0
Uday K Bhatt
Ā 
F pdoc1
F pdoc1F pdoc1
F pdoc1
Roshini Romeo
Ā 
Function points analysis
Function points analysisFunction points analysis
Function points analysis
Yunis Lone
Ā 
Sqa
SqaSqa
Software metrics
Software metricsSoftware metrics
Software metrics
Aadarsh Sharma
Ā 
SE-Lecture-7.pptx
SE-Lecture-7.pptxSE-Lecture-7.pptx
SE-Lecture-7.pptx
vishal choudhary
Ā 

Similar to Software Quality Metrics (20)

Function points and elements
Function points and elementsFunction points and elements
Function points and elements
Ā 
Function point analysis
Function point analysisFunction point analysis
Function point analysis
Ā 
Ijetr011834
Ijetr011834Ijetr011834
Ijetr011834
Ā 
DHS - Using functions points to estimate agile development programs (v2)
DHS - Using functions points to estimate agile development programs (v2)DHS - Using functions points to estimate agile development programs (v2)
DHS - Using functions points to estimate agile development programs (v2)
Ā 
Software Size Estimation
Software Size EstimationSoftware Size Estimation
Software Size Estimation
Ā 
Estimation
EstimationEstimation
Estimation
Ā 
Cost estimation techniques
Cost estimation techniquesCost estimation techniques
Cost estimation techniques
Ā 
Chapter 12
Chapter 12Chapter 12
Chapter 12
Ā 
Function Point Analysis
Function Point AnalysisFunction Point Analysis
Function Point Analysis
Ā 
Ju2517321735
Ju2517321735Ju2517321735
Ju2517321735
Ā 
Ju2517321735
Ju2517321735Ju2517321735
Ju2517321735
Ā 
Chapter 11 Metrics for process and projects.ppt
Chapter 11  Metrics for process and projects.pptChapter 11  Metrics for process and projects.ppt
Chapter 11 Metrics for process and projects.ppt
Ā 
Dot Net performance monitoring
 Dot Net performance monitoring Dot Net performance monitoring
Dot Net performance monitoring
Ā 
Software Metrics - Software Engineering
Software Metrics - Software EngineeringSoftware Metrics - Software Engineering
Software Metrics - Software Engineering
Ā 
Estimation Techniques V1.0
Estimation Techniques V1.0Estimation Techniques V1.0
Estimation Techniques V1.0
Ā 
F pdoc1
F pdoc1F pdoc1
F pdoc1
Ā 
Function points analysis
Function points analysisFunction points analysis
Function points analysis
Ā 
Sqa
SqaSqa
Sqa
Ā 
Software metrics
Software metricsSoftware metrics
Software metrics
Ā 
SE-Lecture-7.pptx
SE-Lecture-7.pptxSE-Lecture-7.pptx
SE-Lecture-7.pptx
Ā 

More from Mufaddal Nullwala

Guide to Networking in Canada for Newcomers
Guide to Networking in Canada for NewcomersGuide to Networking in Canada for Newcomers
Guide to Networking in Canada for Newcomers
Mufaddal Nullwala
Ā 
Canada for Newcomers - Economy and Employment
Canada for Newcomers - Economy and EmploymentCanada for Newcomers - Economy and Employment
Canada for Newcomers - Economy and Employment
Mufaddal Nullwala
Ā 
Winters in Toronto - Self help guide for New Immigrants (PR's, Open Work Perm...
Winters in Toronto - Self help guide for New Immigrants (PR's, Open Work Perm...Winters in Toronto - Self help guide for New Immigrants (PR's, Open Work Perm...
Winters in Toronto - Self help guide for New Immigrants (PR's, Open Work Perm...
Mufaddal Nullwala
Ā 
ORGANISATIONAL MANAGEMENT - BOOK REVIEW - COMMUNICATING WITH EMPLOYEES IMPROV...
ORGANISATIONAL MANAGEMENT - BOOK REVIEW - COMMUNICATING WITH EMPLOYEES IMPROV...ORGANISATIONAL MANAGEMENT - BOOK REVIEW - COMMUNICATING WITH EMPLOYEES IMPROV...
ORGANISATIONAL MANAGEMENT - BOOK REVIEW - COMMUNICATING WITH EMPLOYEES IMPROV...
Mufaddal Nullwala
Ā 
FINANCIAL ANALYSIS - BOOK REVIEW - FAULT LINES - HOW HIDDEN FRACTURES STILL T...
FINANCIAL ANALYSIS - BOOK REVIEW - FAULT LINES - HOW HIDDEN FRACTURES STILL T...FINANCIAL ANALYSIS - BOOK REVIEW - FAULT LINES - HOW HIDDEN FRACTURES STILL T...
FINANCIAL ANALYSIS - BOOK REVIEW - FAULT LINES - HOW HIDDEN FRACTURES STILL T...
Mufaddal Nullwala
Ā 
Environmental Management - Energy Audit & Features
Environmental Management - Energy Audit & FeaturesEnvironmental Management - Energy Audit & Features
Environmental Management - Energy Audit & Features
Mufaddal Nullwala
Ā 
LEADERSHIP IN ORGANISATION (Organisational Leadership)
LEADERSHIP IN ORGANISATION (Organisational Leadership)LEADERSHIP IN ORGANISATION (Organisational Leadership)
LEADERSHIP IN ORGANISATION (Organisational Leadership)
Mufaddal Nullwala
Ā 
Marketing Management - Product Differentiation
Marketing Management - Product DifferentiationMarketing Management - Product Differentiation
Marketing Management - Product Differentiation
Mufaddal Nullwala
Ā 
Blockchain Technology
Blockchain TechnologyBlockchain Technology
Blockchain Technology
Mufaddal Nullwala
Ā 
Robotic Process Automation (RPA)
Robotic Process Automation (RPA)Robotic Process Automation (RPA)
Robotic Process Automation (RPA)
Mufaddal Nullwala
Ā 
SCM || CRM || Intrasoft - Case Study
SCM || CRM ||  Intrasoft - Case StudySCM || CRM ||  Intrasoft - Case Study
SCM || CRM || Intrasoft - Case Study
Mufaddal Nullwala
Ā 
Business Ethics - Metaphysics of Morals by Immanuel Kant
Business Ethics -  Metaphysics of Morals by Immanuel KantBusiness Ethics -  Metaphysics of Morals by Immanuel Kant
Business Ethics - Metaphysics of Morals by Immanuel Kant
Mufaddal Nullwala
Ā 
PRINCIPLES OF MANAGEMENT - PLANNING
PRINCIPLES OF MANAGEMENT - PLANNINGPRINCIPLES OF MANAGEMENT - PLANNING
PRINCIPLES OF MANAGEMENT - PLANNING
Mufaddal Nullwala
Ā 
Indian Economy & Startups generating Business & Jobs
Indian Economy & Startups generating Business & JobsIndian Economy & Startups generating Business & Jobs
Indian Economy & Startups generating Business & Jobs
Mufaddal Nullwala
Ā 
Marketing Management - Brand Building (eg.of Big Bazaar, WestSide, Globus)
Marketing Management - Brand Building  (eg.of Big Bazaar, WestSide, Globus)Marketing Management - Brand Building  (eg.of Big Bazaar, WestSide, Globus)
Marketing Management - Brand Building (eg.of Big Bazaar, WestSide, Globus)
Mufaddal Nullwala
Ā 
R Tribha - Business Plan for Waste Utiliszation
R Tribha - Business Plan for Waste UtiliszationR Tribha - Business Plan for Waste Utiliszation
R Tribha - Business Plan for Waste Utiliszation
Mufaddal Nullwala
Ā 
International Labor Organisation - Labor Law
International Labor Organisation - Labor LawInternational Labor Organisation - Labor Law
International Labor Organisation - Labor Law
Mufaddal Nullwala
Ā 
Organizational Change Management
Organizational Change ManagementOrganizational Change Management
Organizational Change Management
Mufaddal Nullwala
Ā 
Change Management - Principles of Management
Change Management - Principles of ManagementChange Management - Principles of Management
Change Management - Principles of Management
Mufaddal Nullwala
Ā 
Knowledge Management Solution
Knowledge Management SolutionKnowledge Management Solution
Knowledge Management Solution
Mufaddal Nullwala
Ā 

More from Mufaddal Nullwala (20)

Guide to Networking in Canada for Newcomers
Guide to Networking in Canada for NewcomersGuide to Networking in Canada for Newcomers
Guide to Networking in Canada for Newcomers
Ā 
Canada for Newcomers - Economy and Employment
Canada for Newcomers - Economy and EmploymentCanada for Newcomers - Economy and Employment
Canada for Newcomers - Economy and Employment
Ā 
Winters in Toronto - Self help guide for New Immigrants (PR's, Open Work Perm...
Winters in Toronto - Self help guide for New Immigrants (PR's, Open Work Perm...Winters in Toronto - Self help guide for New Immigrants (PR's, Open Work Perm...
Winters in Toronto - Self help guide for New Immigrants (PR's, Open Work Perm...
Ā 
ORGANISATIONAL MANAGEMENT - BOOK REVIEW - COMMUNICATING WITH EMPLOYEES IMPROV...
ORGANISATIONAL MANAGEMENT - BOOK REVIEW - COMMUNICATING WITH EMPLOYEES IMPROV...ORGANISATIONAL MANAGEMENT - BOOK REVIEW - COMMUNICATING WITH EMPLOYEES IMPROV...
ORGANISATIONAL MANAGEMENT - BOOK REVIEW - COMMUNICATING WITH EMPLOYEES IMPROV...
Ā 
FINANCIAL ANALYSIS - BOOK REVIEW - FAULT LINES - HOW HIDDEN FRACTURES STILL T...
FINANCIAL ANALYSIS - BOOK REVIEW - FAULT LINES - HOW HIDDEN FRACTURES STILL T...FINANCIAL ANALYSIS - BOOK REVIEW - FAULT LINES - HOW HIDDEN FRACTURES STILL T...
FINANCIAL ANALYSIS - BOOK REVIEW - FAULT LINES - HOW HIDDEN FRACTURES STILL T...
Ā 
Environmental Management - Energy Audit & Features
Environmental Management - Energy Audit & FeaturesEnvironmental Management - Energy Audit & Features
Environmental Management - Energy Audit & Features
Ā 
LEADERSHIP IN ORGANISATION (Organisational Leadership)
LEADERSHIP IN ORGANISATION (Organisational Leadership)LEADERSHIP IN ORGANISATION (Organisational Leadership)
LEADERSHIP IN ORGANISATION (Organisational Leadership)
Ā 
Marketing Management - Product Differentiation
Marketing Management - Product DifferentiationMarketing Management - Product Differentiation
Marketing Management - Product Differentiation
Ā 
Blockchain Technology
Blockchain TechnologyBlockchain Technology
Blockchain Technology
Ā 
Robotic Process Automation (RPA)
Robotic Process Automation (RPA)Robotic Process Automation (RPA)
Robotic Process Automation (RPA)
Ā 
SCM || CRM || Intrasoft - Case Study
SCM || CRM ||  Intrasoft - Case StudySCM || CRM ||  Intrasoft - Case Study
SCM || CRM || Intrasoft - Case Study
Ā 
Business Ethics - Metaphysics of Morals by Immanuel Kant
Business Ethics -  Metaphysics of Morals by Immanuel KantBusiness Ethics -  Metaphysics of Morals by Immanuel Kant
Business Ethics - Metaphysics of Morals by Immanuel Kant
Ā 
PRINCIPLES OF MANAGEMENT - PLANNING
PRINCIPLES OF MANAGEMENT - PLANNINGPRINCIPLES OF MANAGEMENT - PLANNING
PRINCIPLES OF MANAGEMENT - PLANNING
Ā 
Indian Economy & Startups generating Business & Jobs
Indian Economy & Startups generating Business & JobsIndian Economy & Startups generating Business & Jobs
Indian Economy & Startups generating Business & Jobs
Ā 
Marketing Management - Brand Building (eg.of Big Bazaar, WestSide, Globus)
Marketing Management - Brand Building  (eg.of Big Bazaar, WestSide, Globus)Marketing Management - Brand Building  (eg.of Big Bazaar, WestSide, Globus)
Marketing Management - Brand Building (eg.of Big Bazaar, WestSide, Globus)
Ā 
R Tribha - Business Plan for Waste Utiliszation
R Tribha - Business Plan for Waste UtiliszationR Tribha - Business Plan for Waste Utiliszation
R Tribha - Business Plan for Waste Utiliszation
Ā 
International Labor Organisation - Labor Law
International Labor Organisation - Labor LawInternational Labor Organisation - Labor Law
International Labor Organisation - Labor Law
Ā 
Organizational Change Management
Organizational Change ManagementOrganizational Change Management
Organizational Change Management
Ā 
Change Management - Principles of Management
Change Management - Principles of ManagementChange Management - Principles of Management
Change Management - Principles of Management
Ā 
Knowledge Management Solution
Knowledge Management SolutionKnowledge Management Solution
Knowledge Management Solution
Ā 

Recently uploaded

Photo Copier Xerox Machine annual maintenance contract system.pdf
Photo Copier Xerox Machine annual maintenance contract system.pdfPhoto Copier Xerox Machine annual maintenance contract system.pdf
Photo Copier Xerox Machine annual maintenance contract system.pdf
SERVE WELL CRM NASHIK
Ā 
High-Class Call Girls In Chennai šŸ“ž7014168258 Available With Direct Cash Payme...
High-Class Call Girls In Chennai šŸ“ž7014168258 Available With Direct Cash Payme...High-Class Call Girls In Chennai šŸ“ž7014168258 Available With Direct Cash Payme...
High-Class Call Girls In Chennai šŸ“ž7014168258 Available With Direct Cash Payme...
shoeb2926
Ā 
Call Girls Goa šŸ’ÆCall Us šŸ” 7426014248 šŸ” Independent Goa Escorts Service Available
Call Girls Goa šŸ’ÆCall Us šŸ” 7426014248 šŸ” Independent Goa Escorts Service AvailableCall Girls Goa šŸ’ÆCall Us šŸ” 7426014248 šŸ” Independent Goa Escorts Service Available
Call Girls Goa šŸ’ÆCall Us šŸ” 7426014248 šŸ” Independent Goa Escorts Service Available
sapnaanpad7
Ā 
119321250-History-of-Computer-Programming.ppt
119321250-History-of-Computer-Programming.ppt119321250-History-of-Computer-Programming.ppt
119321250-History-of-Computer-Programming.ppt
lavesingh522
Ā 
šŸ”„ Chennai Call Girls Ā šŸ‘‰ 6350257716 šŸ‘« High Profile Call Girls Whatsapp Number ...
šŸ”„ Chennai Call Girls Ā šŸ‘‰ 6350257716 šŸ‘« High Profile Call Girls Whatsapp Number ...šŸ”„ Chennai Call Girls Ā šŸ‘‰ 6350257716 šŸ‘« High Profile Call Girls Whatsapp Number ...
šŸ”„ Chennai Call Girls Ā šŸ‘‰ 6350257716 šŸ‘« High Profile Call Girls Whatsapp Number ...
tinakumariji156
Ā 
Erotic Call Girls BangalorešŸ«±9079923931šŸ«² High Quality Call Girl Service Right ...
Erotic Call Girls BangalorešŸ«±9079923931šŸ«² High Quality Call Girl Service Right ...Erotic Call Girls BangalorešŸ«±9079923931šŸ«² High Quality Call Girl Service Right ...
Erotic Call Girls BangalorešŸ«±9079923931šŸ«² High Quality Call Girl Service Right ...
meenusingh4354543
Ā 
OpenChain Webinar - Open Source Due Diligence for M&A - 2024-06-17
OpenChain Webinar - Open Source Due Diligence for M&A - 2024-06-17OpenChain Webinar - Open Source Due Diligence for M&A - 2024-06-17
OpenChain Webinar - Open Source Due Diligence for M&A - 2024-06-17
Shane Coughlan
Ā 
Female Bangalore Call Girls šŸ‘‰ 7023059433 šŸ‘ˆ Vip Escorts Service Available
Female Bangalore Call Girls šŸ‘‰ 7023059433 šŸ‘ˆ Vip Escorts Service AvailableFemale Bangalore Call Girls šŸ‘‰ 7023059433 šŸ‘ˆ Vip Escorts Service Available
Female Bangalore Call Girls šŸ‘‰ 7023059433 šŸ‘ˆ Vip Escorts Service Available
isha sharman06
Ā 
Premium Call Girls In Ahmedabad šŸ’ÆCall Us šŸ” 7426014248 šŸ”Independent Ahmedabad ...
Premium Call Girls In Ahmedabad šŸ’ÆCall Us šŸ” 7426014248 šŸ”Independent Ahmedabad ...Premium Call Girls In Ahmedabad šŸ’ÆCall Us šŸ” 7426014248 šŸ”Independent Ahmedabad ...
Premium Call Girls In Ahmedabad šŸ’ÆCall Us šŸ” 7426014248 šŸ”Independent Ahmedabad ...
Anita pandey
Ā 
Digital Marketing Introduction and Conclusion
Digital Marketing Introduction and ConclusionDigital Marketing Introduction and Conclusion
Digital Marketing Introduction and Conclusion
Staff AgentAI
Ā 
Call Girls in Varanasi || 7426014248 || Quick Booking at Affordable Price
Call Girls in Varanasi || 7426014248 || Quick Booking at Affordable PriceCall Girls in Varanasi || 7426014248 || Quick Booking at Affordable Price
Call Girls in Varanasi || 7426014248 || Quick Booking at Affordable Price
vickythakur209464
Ā 
Extreme DDD Modelling Patterns - 2024 Devoxx Poland
Extreme DDD Modelling Patterns - 2024 Devoxx PolandExtreme DDD Modelling Patterns - 2024 Devoxx Poland
Extreme DDD Modelling Patterns - 2024 Devoxx Poland
Alberto Brandolini
Ā 
SAP ECC & S4 HANA PPT COMPARISON MM.pptx
SAP ECC & S4 HANA PPT COMPARISON MM.pptxSAP ECC & S4 HANA PPT COMPARISON MM.pptx
SAP ECC & S4 HANA PPT COMPARISON MM.pptx
aneeshmanikantan2341
Ā 
Whatā€™s new in VictoriaMetrics - Q2 2024 Update
Whatā€™s new in VictoriaMetrics - Q2 2024 UpdateWhatā€™s new in VictoriaMetrics - Q2 2024 Update
Whatā€™s new in VictoriaMetrics - Q2 2024 Update
VictoriaMetrics
Ā 
AI Based Testing - A Comprehensive Guide.pdf
AI Based Testing - A Comprehensive Guide.pdfAI Based Testing - A Comprehensive Guide.pdf
AI Based Testing - A Comprehensive Guide.pdf
kalichargn70th171
Ā 
Hi-Fi Call Girls In Hyderabad šŸ’ÆCall Us šŸ” 7426014248 šŸ”Independent Hyderabad Es...
Hi-Fi Call Girls In Hyderabad šŸ’ÆCall Us šŸ” 7426014248 šŸ”Independent Hyderabad Es...Hi-Fi Call Girls In Hyderabad šŸ’ÆCall Us šŸ” 7426014248 šŸ”Independent Hyderabad Es...
Hi-Fi Call Girls In Hyderabad šŸ’ÆCall Us šŸ” 7426014248 šŸ”Independent Hyderabad Es...
sapnasaifi408
Ā 
Solar Panel Service Provider annual maintenance contract.pdf
Solar Panel Service Provider annual maintenance contract.pdfSolar Panel Service Provider annual maintenance contract.pdf
Solar Panel Service Provider annual maintenance contract.pdf
SERVE WELL CRM NASHIK
Ā 
The Ultimate Guide to Top 36 DevOps Testing Tools for 2024.pdf
The Ultimate Guide to Top 36 DevOps Testing Tools for 2024.pdfThe Ultimate Guide to Top 36 DevOps Testing Tools for 2024.pdf
The Ultimate Guide to Top 36 DevOps Testing Tools for 2024.pdf
kalichargn70th171
Ā 
Hot Call Girls In Ahmedabad āœ” 7737669865 āœ” Hi I Am Divya Vip Call Girl Servic...
Hot Call Girls In Ahmedabad āœ” 7737669865 āœ” Hi I Am Divya Vip Call Girl Servic...Hot Call Girls In Ahmedabad āœ” 7737669865 āœ” Hi I Am Divya Vip Call Girl Servic...
Hot Call Girls In Ahmedabad āœ” 7737669865 āœ” Hi I Am Divya Vip Call Girl Servic...
ns9201415
Ā 
Beginner's Guide to Observability@Devoxx PL 2024
Beginner's  Guide to Observability@Devoxx PL 2024Beginner's  Guide to Observability@Devoxx PL 2024
Beginner's Guide to Observability@Devoxx PL 2024
michniczscribd
Ā 

Recently uploaded (20)

Photo Copier Xerox Machine annual maintenance contract system.pdf
Photo Copier Xerox Machine annual maintenance contract system.pdfPhoto Copier Xerox Machine annual maintenance contract system.pdf
Photo Copier Xerox Machine annual maintenance contract system.pdf
Ā 
High-Class Call Girls In Chennai šŸ“ž7014168258 Available With Direct Cash Payme...
High-Class Call Girls In Chennai šŸ“ž7014168258 Available With Direct Cash Payme...High-Class Call Girls In Chennai šŸ“ž7014168258 Available With Direct Cash Payme...
High-Class Call Girls In Chennai šŸ“ž7014168258 Available With Direct Cash Payme...
Ā 
Call Girls Goa šŸ’ÆCall Us šŸ” 7426014248 šŸ” Independent Goa Escorts Service Available
Call Girls Goa šŸ’ÆCall Us šŸ” 7426014248 šŸ” Independent Goa Escorts Service AvailableCall Girls Goa šŸ’ÆCall Us šŸ” 7426014248 šŸ” Independent Goa Escorts Service Available
Call Girls Goa šŸ’ÆCall Us šŸ” 7426014248 šŸ” Independent Goa Escorts Service Available
Ā 
119321250-History-of-Computer-Programming.ppt
119321250-History-of-Computer-Programming.ppt119321250-History-of-Computer-Programming.ppt
119321250-History-of-Computer-Programming.ppt
Ā 
šŸ”„ Chennai Call Girls Ā šŸ‘‰ 6350257716 šŸ‘« High Profile Call Girls Whatsapp Number ...
šŸ”„ Chennai Call Girls Ā šŸ‘‰ 6350257716 šŸ‘« High Profile Call Girls Whatsapp Number ...šŸ”„ Chennai Call Girls Ā šŸ‘‰ 6350257716 šŸ‘« High Profile Call Girls Whatsapp Number ...
šŸ”„ Chennai Call Girls Ā šŸ‘‰ 6350257716 šŸ‘« High Profile Call Girls Whatsapp Number ...
Ā 
Erotic Call Girls BangalorešŸ«±9079923931šŸ«² High Quality Call Girl Service Right ...
Erotic Call Girls BangalorešŸ«±9079923931šŸ«² High Quality Call Girl Service Right ...Erotic Call Girls BangalorešŸ«±9079923931šŸ«² High Quality Call Girl Service Right ...
Erotic Call Girls BangalorešŸ«±9079923931šŸ«² High Quality Call Girl Service Right ...
Ā 
OpenChain Webinar - Open Source Due Diligence for M&A - 2024-06-17
OpenChain Webinar - Open Source Due Diligence for M&A - 2024-06-17OpenChain Webinar - Open Source Due Diligence for M&A - 2024-06-17
OpenChain Webinar - Open Source Due Diligence for M&A - 2024-06-17
Ā 
Female Bangalore Call Girls šŸ‘‰ 7023059433 šŸ‘ˆ Vip Escorts Service Available
Female Bangalore Call Girls šŸ‘‰ 7023059433 šŸ‘ˆ Vip Escorts Service AvailableFemale Bangalore Call Girls šŸ‘‰ 7023059433 šŸ‘ˆ Vip Escorts Service Available
Female Bangalore Call Girls šŸ‘‰ 7023059433 šŸ‘ˆ Vip Escorts Service Available
Ā 
Premium Call Girls In Ahmedabad šŸ’ÆCall Us šŸ” 7426014248 šŸ”Independent Ahmedabad ...
Premium Call Girls In Ahmedabad šŸ’ÆCall Us šŸ” 7426014248 šŸ”Independent Ahmedabad ...Premium Call Girls In Ahmedabad šŸ’ÆCall Us šŸ” 7426014248 šŸ”Independent Ahmedabad ...
Premium Call Girls In Ahmedabad šŸ’ÆCall Us šŸ” 7426014248 šŸ”Independent Ahmedabad ...
Ā 
Digital Marketing Introduction and Conclusion
Digital Marketing Introduction and ConclusionDigital Marketing Introduction and Conclusion
Digital Marketing Introduction and Conclusion
Ā 
Call Girls in Varanasi || 7426014248 || Quick Booking at Affordable Price
Call Girls in Varanasi || 7426014248 || Quick Booking at Affordable PriceCall Girls in Varanasi || 7426014248 || Quick Booking at Affordable Price
Call Girls in Varanasi || 7426014248 || Quick Booking at Affordable Price
Ā 
Extreme DDD Modelling Patterns - 2024 Devoxx Poland
Extreme DDD Modelling Patterns - 2024 Devoxx PolandExtreme DDD Modelling Patterns - 2024 Devoxx Poland
Extreme DDD Modelling Patterns - 2024 Devoxx Poland
Ā 
SAP ECC & S4 HANA PPT COMPARISON MM.pptx
SAP ECC & S4 HANA PPT COMPARISON MM.pptxSAP ECC & S4 HANA PPT COMPARISON MM.pptx
SAP ECC & S4 HANA PPT COMPARISON MM.pptx
Ā 
Whatā€™s new in VictoriaMetrics - Q2 2024 Update
Whatā€™s new in VictoriaMetrics - Q2 2024 UpdateWhatā€™s new in VictoriaMetrics - Q2 2024 Update
Whatā€™s new in VictoriaMetrics - Q2 2024 Update
Ā 
AI Based Testing - A Comprehensive Guide.pdf
AI Based Testing - A Comprehensive Guide.pdfAI Based Testing - A Comprehensive Guide.pdf
AI Based Testing - A Comprehensive Guide.pdf
Ā 
Hi-Fi Call Girls In Hyderabad šŸ’ÆCall Us šŸ” 7426014248 šŸ”Independent Hyderabad Es...
Hi-Fi Call Girls In Hyderabad šŸ’ÆCall Us šŸ” 7426014248 šŸ”Independent Hyderabad Es...Hi-Fi Call Girls In Hyderabad šŸ’ÆCall Us šŸ” 7426014248 šŸ”Independent Hyderabad Es...
Hi-Fi Call Girls In Hyderabad šŸ’ÆCall Us šŸ” 7426014248 šŸ”Independent Hyderabad Es...
Ā 
Solar Panel Service Provider annual maintenance contract.pdf
Solar Panel Service Provider annual maintenance contract.pdfSolar Panel Service Provider annual maintenance contract.pdf
Solar Panel Service Provider annual maintenance contract.pdf
Ā 
The Ultimate Guide to Top 36 DevOps Testing Tools for 2024.pdf
The Ultimate Guide to Top 36 DevOps Testing Tools for 2024.pdfThe Ultimate Guide to Top 36 DevOps Testing Tools for 2024.pdf
The Ultimate Guide to Top 36 DevOps Testing Tools for 2024.pdf
Ā 
Hot Call Girls In Ahmedabad āœ” 7737669865 āœ” Hi I Am Divya Vip Call Girl Servic...
Hot Call Girls In Ahmedabad āœ” 7737669865 āœ” Hi I Am Divya Vip Call Girl Servic...Hot Call Girls In Ahmedabad āœ” 7737669865 āœ” Hi I Am Divya Vip Call Girl Servic...
Hot Call Girls In Ahmedabad āœ” 7737669865 āœ” Hi I Am Divya Vip Call Girl Servic...
Ā 
Beginner's Guide to Observability@Devoxx PL 2024
Beginner's  Guide to Observability@Devoxx PL 2024Beginner's  Guide to Observability@Devoxx PL 2024
Beginner's Guide to Observability@Devoxx PL 2024
Ā 

Software Quality Metrics

  • 1. JBIMS MIM SEM V ā€“ 2015-2018 15-I-131 ā€“ MUFADDAL NULLWALA
  • 2. ļ‚ž What is Quality ļ‚ž Software Quality Metrics ļ‚ž Types of Software Quality Metrics ļ‚ž Three groups of Software Quality Metrics ļ‚ž Difference Between Errors, Defects, Faults, and Failures ļ‚ž Lines of code ļ‚ž Function Point ļ‚ž Feature Point ļ‚ž Customer Satisfaction Metrics ļ‚ž Tools used for Quality Metrics/Measurements ļ‚ž PERT and CPM
  • 3. ļ‚ž Who Are we ? ļ‚ž What we do ? ļ‚ž Why makes us do that?
  • 4.
  • 6.
  • 7. ļ‚ž The subset of metrics that focus on quality ļ‚ž Software quality metrics can be divided into: ā—¼End-product quality metrics ā—¼In-process quality metrics ļ‚ž The essence of software quality engineering is to investigate the relationships among in- process metric, project characteristics , and end-product quality, and, based on the findings, engineer improvements in quality to both the process and the product.
  • 8. ļ‚ž Software metrics are used to obtain objective reproducible measurements that can be useful for quality assurance, performance, debugging, management, and estimating costs. ļ‚ž Finding defects in code (post release and prior to release), predicting defective code, predicting project success, and predicting project risk .
  • 9. ļ‚ž Product metrics ā€“ e.g., size, complexity, design features, performance, quality level ļ‚ž Process metrics ā€“ e.g., effectiveness of defect removal, response time of the fix process ļ‚ž Project metrics ā€“ e.g., number of software developers, cost, schedule, productivity
  • 10. ļ‚ž Product quality ļ‚ž In-process quality ļ‚ž Maintenance quality ļ‚ž Product Quality Matrices
  • 11. ļ‚ž Intrinsic product quality ā—¼Mean time to failure ā—¼Defect density ļ‚ž Customer related ā—¼Customer problems ā—¼Customer satisfaction
  • 12. ļ‚ž Intrinsic product quality is usually measured by: ā—¼the number of ā€œbugsā€ (functional defects) in the software (defect density), or ā—¼how long the software can run before ā€œcrashingā€ (MTTF ā€“ mean time to failure) ļ‚ž The two metrics are correlated but different
  • 13. ļ‚ž An error is a human mistake that results in incorrect software. ļ‚ž The resulting fault is an accidental condition that causes a unit of the system to fail to function as required. ļ‚ž A defect is an anomaly in a product. ļ‚ž A failure occurs when a functional unit of a software-related system can no longer perform its required function or cannot perform it within specified limits
  • 14. ļ‚ž This metric is the number of defects over the opportunities for error (OPE) during some specified time frame. ļ‚ž We can use the number of unique causes of observed failures (failures are just defects materialized) to approximate the number of defects. ļ‚ž The size of the software in either lines of code or function points is used to approximate OPE.
  • 15. ļ‚ž Lines of Code or LOC is a quantitative measurement in computer programming for files that contains code from a computer programming language, in text form. ļ‚ž The number of lines indicates the size of a given file and gives some indication of the work involved. ļ‚ž It is used as the Unit of Sizing of the Software
  • 16. Metric Supported as Description Physical lines LINES This metric counts the physical lines, but excludes classic VB form definitions and attributes. Physical lines of code (notĀ supported) This type of a metric counts the lines but excludes empty lines and comments. This is sometimes referred to as the sourceĀ linesĀ ofĀ  code (sLOC) metric. Logical lines LLINES A logicalĀ line covers one or more physical lines. Two or more physical lines can be joined as one logical line with the line continuation sequence " _". The LLINES metric counts a joined line just once regardless of how many physical lines there are in it. Logical lines of code LLOC A logical line of code is one that contains actual source code. An empty line or a comment line is not counted in LLOC. Statements STMT This is not a line count, but a statement count. Visual Basic programs typically contain one statement per line of code. However, it's possible to put several statements on one line by using the colon ":" or writing single-line If..Then statements.
  • 17. LINES = Number of lines This is the simplest line count, LINES counts every line, be it a code, a comment or an empty line. Maximum procedure length Max 66 linesLINES <= 66. The procedure fits on one page when printed. Max 150 linesLINES <= 150. A recommendation for Java. Max 200 linesLINES <= 200. The procedure fits on 3 pages. Maximum file length Max 1000 linesLINES <= 1000. This file size accommodates 15 one-page procedures or 100 short 10-line procedures. Max 2000 linesLINES <= 2000. A recommendation for Java.
  • 18. LLOC = Number of logical lines of code LLOC counts all logical lines except the following: ā¦æFull comment lines ā¦æWhitespace lines ā¦æLines excluded by compiler conditional directives Maximum acceptable LLOC Procedure LLOC <= 50 Class LLOC <= 1500 File LLOC <= 2000 Minimum acceptable LLOC Procedure LLOC >= 3 Class LLOC >= 3 File LLOC >= 1
  • 19. Function points are a unit measure for software much like an hour is to measuring time, miles are to measuring distance or Celsius is to measuring temperature.Ā Ā  Function Point Analysis, systems are divided into five large classes and general system characteristics: ā¦æExternal Inputs ā¦æExternal Outputs ā¦æExternal Inquires ā¦æLogical Files ā¦æExternal Interface Files Transactions Logical Information
  • 20. ā¦æ External Inputs (EI): It is an elementary process in which data crosses the boundary from outside to inside.Ā Ā This data may come from a data input screen or another application. The data may be used to maintain one or more internal logical files.Ā Ā The data can be either control information or business information.Ā The graphic represents a simple EI that updates 2 ILF's (FTR's).
  • 21. ā¦æ External Outputs (EO): Is an elementary process in which derived data passes across the boundary from inside to outside.Ā Ā Ā Additionally, an EO may update an ILF.Ā Ā The data creates reports or output files sent to other applications.Ā Ā These reports and files are created from one or more internal logical files and external interface file.Ā  The following graphic represents on EO with 2 FTR's there is derived information (green) that has been derived from the ILF's
  • 22. ā¦æ External Inquiry (EQ) An elementary process with both input and output components that result in data retrieval from one or more internal logical files and external interface files.Ā Ā The input process does not update any Internal Logical Files, and the output side does not contain derived data. The graphic below represents an EQ with two ILF's and no derived data.
  • 23. ā¦æ Internal Logical Files (ILFā€™s)Ā - a user identifiable group of logically related data that resides entirely within the applications boundary and is maintained through external inputs. ā¦æ External Interface Files (EIFā€™s)Ā - a user identifiable group of logically related data that is used for reference purposes only. The data resides entirely outside the application and is maintained by another application. The external interface file is an internal logical file for another application.
  • 24. ā¦æ After the components have been classified as one of the five major components (EIā€™s, EOā€™s, EQā€™s, ILFā€™s or EIFā€™s), a ranking of low, average or high is assigned. ā¦æ The counts for each level of complexity for each type of component can be entered into a table such as the following one.
  • 25. ā¦æ The value adjustment factor (VAF) is based on 14 general system characteristics (GSC's) that rate the general functionality of the application being counted. Each characteristic has associated descriptions that help determine the degrees of influence of the characteristics.
  • 26. ā¦æ Once all the 14 GSCā€™s have been answered, they should be tabulated using the IFPUG Value Adjustment Equation (VAF) VAF = 0.65 + [ (Ci) / 100] Ā  Ci = degree of influence for each General System Characteristic 0.65 may vary as per requirements ā¦æ The final Function Point Count is obtained by multiplying the VAF times the Unadjusted Function Point (UAF). Ā  FP = UAF * VAF
  • 27. ā¦æFeature point metrics is software estimation technique where identification of different features of the software and estimate cost based on features. ļ±Software for engineering and embedded systems/applications. ļ±Software where application complexity is high. ļ±For example SAP ERP package have different features for purchasing process : o Creation of Purchase Order/Automatic availability check of stock for warehouse/plant o Creation of Purchase requisition/Conversion of purchase requisition into purchase order o Purchase order release strategy using purchase organization structure. o Transfer order creation for stock movement with LIFO(last in first out)/FIFO(first in first out) strategies. ļ‚— Feature point (external) Feature pointFeature point Function point (Internal ex : f1,f2,f3, etc.)
  • 28. ā¦æ It includes a new software characteristics : ā€œAlgorithmsā€. ā¦æ Steps to get feature point of software as below : ļ± Count feature points ļ± Continue the feature point count by counting the number of algorithms ļ± Weigh complexity. ļ± Evaluate environmental factors ļ± Calculate the complexity adjustment factor. ļ± Multiply the raw feature point count by the complexity adjustment factor
  • 29. ā¦æ Another feature point metrics developed by Boeing : ā€œIntegrate Data Dimension of Software with functional and control dimensionsā€ known as 3D function Point ā¦æ Boeing 3D 787 Dreamliner Live Flight Tracker
  • 30. Hybrid system such as : ā‘ Stock Control system with Heavy communication ā‘ Cooling system control process ā‘ Update Control Group ā‘ Read only Control Group ā‘ External Control Data
  • 31. ā¦æ Real time software typically contains large number of single occurrence groups of data Software with different functions point (ex : f1(),f2(),f3() etc.) Fto1Fti1 Fti2 Input Output Fto2
  • 32. ā¦æ An engine temperature control process (process with a few sub- processes) Steps follows as below : ā¦æ Output : Turn on Cooling system when required
  • 33. ā¦æ Feature point metrics are language or platform independent. ā¦æ Easily computed from the SRS(Software requirements specification ) during project planning. ā¦æ It gives an idea of ā€œEffortā€ and ā€œTimeā€ for software project estimation.
  • 35. ā¦æ Customer satisfaction is often measured by customer survey data via the five-point scale: ā—¼Very satisfied ā—¼Satisfied ā—¼Neutral ā—¼Dissatisfied ā—¼Very dissatisfied
  • 36. ā¦æ CUPRIMDSO ā—¼ Capability (functionality) ā—¼ Usability ā—¼ Performance ā—¼ Reliability ā—¼ Installability ā—¼ Maintainability ā—¼ Documentation ā—¼ Service ā—¼ Overall
  • 38. ā¦æ Percent of completely satisfied customers ā¦æ Percent of satisfied customers (satisfied and completely satisfied) ā¦æ Percent of dissatisfied customers (dissatisfied and completely dissatisfied) ā¦æ Percent of non-satisfied customers (neutral, dissatisfied, and completely dissatisfied)
  • 39. ā¦æ Defect density during machine testing ā¦æ Defect arrival pattern during machine testing ā¦æ Phase-based defect removal pattern ā¦æ Defect removal effectiveness
  • 40. ā¦æ Defect rate during formal machine testing (testing after code is integrated into the system library) is usually positively correlated with the defect rate in the field. ā¦æ The simple metric of defects per KLOC or function point is a good indicator of quality while the product is being tested.
  • 41. ā¦æ Scenarios for judging release quality: ā—¼If the defect rate during testing is the same or lower than that of the previous release, then ask: Does the testing for the current release deteriorate? ā€¢ If the answer is no, the quality perspective is positive. ā€¢ If the answer is yes, you need to do extra testing.
  • 42. ā¦æ Scenarios for judging release quality (contā€™d): ā—¼If the defect rate during testing is substantially higher than that of the previous release, then ask: Did we plan for and actually improve testing effectiveness? ā€¢ If the answer is no, the quality perspective is negative. ā€¢ If the answer is yes, then the quality perspective is the same or positive.
  • 43. ā¦æ The pattern of defect arrivals gives more information than defect density during testing. ā¦æ The objective is to look for defect arrivals that stabilize at a very low level, or times between failures that are far apart before ending the testing effort and releasing the software.
  • 44. ā¦æ The defect arrivals during the testing phase by time interval (e.g., week). These are raw arrivals, not all of which are valid. ā¦æ The pattern of valid defect arrivals ā€“ when problem determination is done on the reported problems. This is the true defect pattern. ā¦æ The pattern of defect backlog over time. This is needed because development organizations cannot investigate and fix all reported problems immediately. This metric is a workload statement as well as a quality statement.
  • 45. ā¦æ This is similar to test defect density metric. ā¦æ It requires tracking defects in all phases of the development cycle. ā¦æ The pattern of phase-based defect removal reflects the overall defect removal ability of the development process.
  • 46. ā¦æ DRE = (Defects removed during a development phase <divided by> Defects latent in the product) x 100% ā¦æ The denominator can only be approximated. ā¦æ It is usually estimated as: Defects removed during the phase + Defects found later
  • 47. ā¦æ When done for the front end of the process (before code integration), it is called early defect removal effectiveness. ā¦æ When done for a specific phase, it is called phase effectiveness.
  • 48. ā¦æ The goal during maintenance is to fix the defects as soon as possible with excellent fix quality ā¦æ The following metrics are important: ā—¼Fix backlog and backlog management index ā—¼Fix response time and fix responsiveness ā—¼Percent delinquent fixes ā—¼Fix quality
  • 49. ā¦æ Cause and Effect Diagrams ā¦æ Flow Charts ā¦æ Checksheets ā¦æ Histograms ā¦æ Pareto Charts ā¦æ Control Charts ā¦æ Scatter Diagrams
  • 50. Purpose: Graphical representation of the trail leading to the root cause of a problem How is it done? ā—Decide which quality characteristic, outcome or effect you want to examine (may use Pareto chart) ā—Backbone ā€“draw straight line ā—Ribs ā€“ categories ā—Medium size bones ā€“secondary causes ā—Small bones ā€“ root causes Benefits: ā—Breaks problems down into bite-size pieces to find root cause ā—Fosters team work ā—Common understanding of factors causing the problem ā—Road map to verify picture of the process ā—Follows brainstorming relationship
  • 51. Purpose: Visual illustration of the sequence of operations required to complete a task āœ“ Schematic drawing of the process to measure or improve. āœ“ Starting point for process improvement āœ“ Potential weakness in the process are made visual. āœ“ Picture of process as it should be. How is it done? ā¦æTopdown: ā— List major steps ā— Write them across top of the chart ā— List sub-steps under each in order they occur ā— Linear: ā— Write the process step inside each symbol ā— Connect the Symbols with arrows showing the direction of flow Benefits: ā— Identify process improvements ā— Understand the process ā— Shows duplicated effort and other non-value-added steps ā— Clarify working relationships between people and organizations ā— Target specific steps in the process for improvement.
  • 52. Purpose: ā—¼ Tool for collecting and organizing measured or counted data ā—¼ Data collected can be used as input data for other quality tools How is it done? ā—¼ Decide what event or problem will be observed. Develop operational definitions. ā—¼ Decide when data will be collected and for how long. ā—¼ Design the form. Set it up so that data can be recorded simply by making check marks. ā—¼ Label all spaces on the form. ā—¼ Each time the targeted event or problem occurs, record data on the check sheet. Benefits: ā—¼ Collect data in a systematic and organized manner ā—¼ To determine source of problem ā—¼ To facilitate classification of data
  • 53. Purpose: To determine the spread or variation of a set of data points in a graphical form How is it done? ā— Collect data, 50-100 data point ā— Determine the range of the data ā— Calculate the size of the class interval ā— Divide data points into classes ā— Determine the class boundary ā— Count # of data points in each class ā— Draw the histogram Benefits: ā— Allows you to understand at a glance the variation that exists in a process ā— The shape of the histogram will show process behavior ā— Often, it will tell you to dig deeper for otherwise unseen causes of variation. ā— The shape and size of the dispersion will help identify otherwise hidden sources of variation ā— Used to determine the capability of a process ā— Starting point for the improvement process
  • 54. Purpose: A Pareto chart is a bar graph and depicts which situations are more significant. Prioritize problems. How is it done? ā¦æ Create a preliminary list of problem classifications. ā¦æ Tally the occurrences in each problem classification. ā¦æ Arrange each classification in order from highest to lowest ā¦æ Construct the bar chart Benefits: ā¦æ Pareto analysis helps graphically display results so the significant few problems emerge from the general background ā¦æ It tells you what to work on first
  • 55. Purpose: The primary purpose of a control chart is to predict expected product outcome. The control chart is a graph used to study how a process changes over time. How is it done? Control Chart Decision Tree: ā—¼ Determine Sample size (n) ā—¼ Variable or Attribute Data ā€¢ Variable is measured on a continuous scale ā€¢ Attribute is occurrences in n observations ā—¼ Determine if sample size is constant or changing Benefits: ā—¼ Predict process out of control and out of specification limits ā—¼ Distinguish between specific, identifiable causes of variation ā—¼ Can be used for statistical process control
  • 56. Purpose: The scatter diagram graphs pairs of numerical data, with one variable on each axis, to look for a relationship between them.Ā  How is it done? ā— Decide which paired factors you want to examine. Both factors must be measurable on some incremental linear scale. ā— Collect 30 to 100 paired data points. ā— Find the highest and lowest value for both variables. ā— Draw the vertical (y) and horizontal (x) axes of a graph. ā— Plot the data The shape that the cluster of dots takes will tell you something about the relationship between the two variables that you tested. Benefits: ā—Helps identify and test probable causes. ā—By knowing which elements of your process are related and how they are related, you will know what to control or what to vary to affect a quality characteristic.
  • 57.
  • 58.
  • 59. ā¦æ Prediction of deliverables ā¦æ Planning resource requirements ā¦æ Controlling resource allocation ā¦æ Internal program review ā¦æ External program review ā¦æ Performance evaluation ā¦æ Uniform wide acceptance
  • 60. A basic CPM Diagram
  • 61.
  • 62. ā¦æ Define the Project. The Project should have only a single start activity and a single finish activity. ā¦æ Develop the relationships among the activities. ā¦æ Draw the "Network" connecting all the activities. ā¦æ Assign time and/or cost estimates to each activity ā¦æ Compute the critical path. ā¦æ Use the Network to help plan, schedule, monitor and control the project.
  • 63.
  • 64. ā¦æ Draw the CPM network ā¦æ Analyze the paths through the network ā¦æ Determine the float for each activity ā¦æ Compute the activityā€™s float ā¦æ float = LS - ES = LF - EF ā¦æ Float is the maximum amount of time that this activity can be delay in its completion before it becomes a critical activity, i.e., delays completion of the project ā¦æ Find the critical path is that the sequence of activities and events where there is no ā€œslackā€ i.e.. Zero slack ā¦æ Longest path through a network ā¦æ Find the project duration is minimum project completion time
  • 65.
  • 66. ā¦æ Draw the network. ā¦æ Analyze the paths through the network and find the critical path. ā¦æ The length of the critical path is the mean of the project duration probability distribution which is assumed to be normal ā¦æ The standard deviation of the project duration probability distribution is computed by adding the variances of the critical activities (all of the activities that make up the critical path) and taking the square root of that sum ā¦æ Probability computations can now be made using the normal distribution table. ā¦æ Determine probability that project is completed within specified time where Āµ = tp = project mean time Ļƒ = project standard mean time x = (proposed ) specified time Z = x - Āµ Ļƒ
  • 68. Advantages: ā¦æReduction in cost ā¦æMinimization of Risk in complex activity ā¦æFlexibility ā¦æOptimization of resources ā¦æReduction in Uncertainty Disadvantages: ā¦æNetworks charts tend to be large ā¦æLack of timeframe in charts ,leads to difficulty in showing status ā¦æSkillful Personnel required for planning/implementation
  ēæ»čƑļ¼š