SlideShare a Scribd company logo
1 of 68
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

Chapter 13 software testing strategies
Chapter 13 software testing strategiesChapter 13 software testing strategies
Chapter 13 software testing strategiesSHREEHARI WADAWADAGI
Ā 
Pressman ch-1-software
Pressman ch-1-softwarePressman ch-1-software
Pressman ch-1-softwareAlenaDion
Ā 
verification and validation
verification and validationverification and validation
verification and validationDinesh Pasi
Ā 
Ch 3 software quality factor
Ch 3 software quality factorCh 3 software quality factor
Ch 3 software quality factorKittitouch Suteeca
Ā 
Unified process model
Unified process modelUnified process model
Unified process modelRyndaMaala
Ā 
software project management Artifact set(spm)
software project management Artifact set(spm)software project management Artifact set(spm)
software project management Artifact set(spm)REHMAT ULLAH
Ā 
Software Process Models
Software Process ModelsSoftware Process Models
Software Process ModelsAtul Karmyal
Ā 
Software Quality Management
Software Quality ManagementSoftware Quality Management
Software Quality ManagementKrishna Sujeer
Ā 
Software Quality Challenge
Software Quality ChallengeSoftware Quality Challenge
Software Quality ChallengeHelmy Satria
Ā 
Formal Specification in Software Engineering SE9
Formal Specification in Software Engineering SE9Formal Specification in Software Engineering SE9
Formal Specification in Software Engineering SE9koolkampus
Ā 
Software Requirement Specification
Software Requirement SpecificationSoftware Requirement Specification
Software Requirement SpecificationNiraj Kumar
Ā 
Software metrics
Software metricsSoftware metrics
Software metricsAadarsh Sharma
Ā 
Software quality
Software qualitySoftware quality
Software qualitySara Mehmood
Ā 
Software Metrics
Software MetricsSoftware Metrics
Software MetricsMassimo Felici
Ā 
Software Measurement and Metrics.pptx
Software Measurement and Metrics.pptxSoftware Measurement and Metrics.pptx
Software Measurement and Metrics.pptxubaidullah75790
Ā 
Sqa plan
Sqa planSqa plan
Sqa planWains Jutt
Ā 
Software Engineering : Requirement Analysis & Specification
Software Engineering : Requirement Analysis & SpecificationSoftware Engineering : Requirement Analysis & Specification
Software Engineering : Requirement Analysis & SpecificationAjit Nayak
Ā 
Basis path testing
Basis path testingBasis path testing
Basis path testingHoa Le
Ā 
Software estimation
Software estimationSoftware estimation
Software estimationMd Shakir
Ā 

What's hot (20)

Software Verification & Validation
Software Verification & ValidationSoftware Verification & Validation
Software Verification & Validation
Ā 
Chapter 13 software testing strategies
Chapter 13 software testing strategiesChapter 13 software testing strategies
Chapter 13 software testing strategies
Ā 
Pressman ch-1-software
Pressman ch-1-softwarePressman ch-1-software
Pressman ch-1-software
Ā 
verification and validation
verification and validationverification and validation
verification and validation
Ā 
Ch 3 software quality factor
Ch 3 software quality factorCh 3 software quality factor
Ch 3 software quality factor
Ā 
Unified process model
Unified process modelUnified process model
Unified process model
Ā 
software project management Artifact set(spm)
software project management Artifact set(spm)software project management Artifact set(spm)
software project management Artifact set(spm)
Ā 
Software Process Models
Software Process ModelsSoftware Process Models
Software Process Models
Ā 
Software Quality Management
Software Quality ManagementSoftware Quality Management
Software Quality Management
Ā 
Software Quality Challenge
Software Quality ChallengeSoftware Quality Challenge
Software Quality Challenge
Ā 
Formal Specification in Software Engineering SE9
Formal Specification in Software Engineering SE9Formal Specification in Software Engineering SE9
Formal Specification in Software Engineering SE9
Ā 
Software Requirement Specification
Software Requirement SpecificationSoftware Requirement Specification
Software Requirement Specification
Ā 
Software metrics
Software metricsSoftware metrics
Software metrics
Ā 
Software quality
Software qualitySoftware quality
Software quality
Ā 
Software Metrics
Software MetricsSoftware Metrics
Software Metrics
Ā 
Software Measurement and Metrics.pptx
Software Measurement and Metrics.pptxSoftware Measurement and Metrics.pptx
Software Measurement and Metrics.pptx
Ā 
Sqa plan
Sqa planSqa plan
Sqa plan
Ā 
Software Engineering : Requirement Analysis & Specification
Software Engineering : Requirement Analysis & SpecificationSoftware Engineering : Requirement Analysis & Specification
Software Engineering : Requirement Analysis & Specification
Ā 
Basis path testing
Basis path testingBasis path testing
Basis path testing
Ā 
Software estimation
Software estimationSoftware estimation
Software estimation
Ā 

Similar to Software Quality Metrics

Function points and elements
Function points and elementsFunction points and elements
Function points and elementsBusi Sreedhaar Reddy
Ā 
Function point analysis
Function point analysisFunction point analysis
Function point analysisRosu Gabi
Ā 
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 EstimationMuhammad Asim
Ā 
Cost estimation techniques
Cost estimation techniquesCost estimation techniques
Cost estimation techniqueslokareminakshi
Ā 
Chapter 12
Chapter 12Chapter 12
Chapter 12sarath1992
Ā 
Function Point Analysis
Function Point AnalysisFunction Point Analysis
Function Point AnalysisAraf Karsh Hamid
Ā 
Metrics for project size estimation
Metrics for project size estimationMetrics for project size estimation
Metrics for project size estimationNur Islam
Ā 
Ju2517321735
Ju2517321735Ju2517321735
Ju2517321735IJERA Editor
Ā 
Ju2517321735
Ju2517321735Ju2517321735
Ju2517321735IJERA 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.pptssuser3f82c9
Ā 
Dot Net performance monitoring
 Dot Net performance monitoring Dot Net performance monitoring
Dot Net performance monitoringKranthi Paidi
Ā 
Estimation Techniques V1.0
Estimation Techniques V1.0Estimation Techniques V1.0
Estimation Techniques V1.0Uday K Bhatt
Ā 
Function points analysis
Function points analysisFunction points analysis
Function points analysisYunis Lone
Ā 
Loc and function point
Loc and function pointLoc and function point
Loc and function pointMitali Chugh
Ā 

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
Ā 
Metrics for project size estimation
Metrics for project size estimationMetrics for project size estimation
Metrics for project size estimation
Ā 
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
Ā 
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
Ā 
SE-Lecture-7.pptx
SE-Lecture-7.pptxSE-Lecture-7.pptx
SE-Lecture-7.pptx
Ā 
Loc and function point
Loc and function pointLoc and function point
Loc and function point
Ā 

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 NewcomersMufaddal Nullwala
Ā 
Canada for Newcomers - Economy and Employment
Canada for Newcomers - Economy and EmploymentCanada for Newcomers - Economy and Employment
Canada for Newcomers - Economy and EmploymentMufaddal 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 & FeaturesMufaddal 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 DifferentiationMufaddal 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 StudyMufaddal 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 KantMufaddal Nullwala
Ā 
PRINCIPLES OF MANAGEMENT - PLANNING
PRINCIPLES OF MANAGEMENT - PLANNINGPRINCIPLES OF MANAGEMENT - PLANNING
PRINCIPLES OF MANAGEMENT - PLANNINGMufaddal Nullwala
Ā 
Indian Economy & Startups generating Business & Jobs
Indian Economy & Startups generating Business & JobsIndian Economy & Startups generating Business & Jobs
Indian Economy & Startups generating Business & JobsMufaddal 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 UtiliszationMufaddal Nullwala
Ā 
International Labor Organisation - Labor Law
International Labor Organisation - Labor LawInternational Labor Organisation - Labor Law
International Labor Organisation - Labor LawMufaddal Nullwala
Ā 
Organizational Change Management
Organizational Change ManagementOrganizational Change Management
Organizational Change ManagementMufaddal Nullwala
Ā 
Change Management - Principles of Management
Change Management - Principles of ManagementChange Management - Principles of Management
Change Management - Principles of ManagementMufaddal Nullwala
Ā 
Knowledge Management Solution
Knowledge Management SolutionKnowledge Management Solution
Knowledge Management SolutionMufaddal 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

W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
Ā 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
Ā 
call girls in Vaishali (Ghaziabad) šŸ” >ą¼’8448380779 šŸ” genuine Escort Service šŸ”āœ”ļøāœ”ļø
call girls in Vaishali (Ghaziabad) šŸ” >ą¼’8448380779 šŸ” genuine Escort Service šŸ”āœ”ļøāœ”ļøcall girls in Vaishali (Ghaziabad) šŸ” >ą¼’8448380779 šŸ” genuine Escort Service šŸ”āœ”ļøāœ”ļø
call girls in Vaishali (Ghaziabad) šŸ” >ą¼’8448380779 šŸ” genuine Escort Service šŸ”āœ”ļøāœ”ļøDelhi Call girls
Ā 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
Ā 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
Ā 
CHEAP Call Girls in Pushp Vihar (-DELHI )šŸ” 9953056974šŸ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )šŸ” 9953056974šŸ”(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )šŸ” 9953056974šŸ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )šŸ” 9953056974šŸ”(=)/CALL GIRLS SERVICE9953056974 Low Rate Call Girls In Saket, Delhi NCR
Ā 
CALL ON āž„8923113531 šŸ”Call Girls Badshah Nagar Lucknow best Female service
CALL ON āž„8923113531 šŸ”Call Girls Badshah Nagar Lucknow best Female serviceCALL ON āž„8923113531 šŸ”Call Girls Badshah Nagar Lucknow best Female service
CALL ON āž„8923113531 šŸ”Call Girls Badshah Nagar Lucknow best Female serviceanilsa9823
Ā 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
Ā 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
Ā 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
Ā 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto GonzƔlez Trastoy
Ā 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
Ā 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AIABDERRAOUF MEHENNI
Ā 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
Ā 
CALL ON āž„8923113531 šŸ”Call Girls Kakori Lucknow best sexual service Online ā˜‚ļø
CALL ON āž„8923113531 šŸ”Call Girls Kakori Lucknow best sexual service Online  ā˜‚ļøCALL ON āž„8923113531 šŸ”Call Girls Kakori Lucknow best sexual service Online  ā˜‚ļø
CALL ON āž„8923113531 šŸ”Call Girls Kakori Lucknow best sexual service Online ā˜‚ļøanilsa9823
Ā 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
Ā 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
Ā 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
Ā 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
Ā 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlanā€™s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlanā€™s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlanā€™s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlanā€™s ...OnePlan Solutions
Ā 

Recently uploaded (20)

W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
Ā 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
Ā 
call girls in Vaishali (Ghaziabad) šŸ” >ą¼’8448380779 šŸ” genuine Escort Service šŸ”āœ”ļøāœ”ļø
call girls in Vaishali (Ghaziabad) šŸ” >ą¼’8448380779 šŸ” genuine Escort Service šŸ”āœ”ļøāœ”ļøcall girls in Vaishali (Ghaziabad) šŸ” >ą¼’8448380779 šŸ” genuine Escort Service šŸ”āœ”ļøāœ”ļø
call girls in Vaishali (Ghaziabad) šŸ” >ą¼’8448380779 šŸ” genuine Escort Service šŸ”āœ”ļøāœ”ļø
Ā 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
Ā 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Ā 
CHEAP Call Girls in Pushp Vihar (-DELHI )šŸ” 9953056974šŸ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )šŸ” 9953056974šŸ”(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )šŸ” 9953056974šŸ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )šŸ” 9953056974šŸ”(=)/CALL GIRLS SERVICE
Ā 
CALL ON āž„8923113531 šŸ”Call Girls Badshah Nagar Lucknow best Female service
CALL ON āž„8923113531 šŸ”Call Girls Badshah Nagar Lucknow best Female serviceCALL ON āž„8923113531 šŸ”Call Girls Badshah Nagar Lucknow best Female service
CALL ON āž„8923113531 šŸ”Call Girls Badshah Nagar Lucknow best Female service
Ā 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
Ā 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Ā 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
Ā 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Ā 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
Ā 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
Ā 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
Ā 
CALL ON āž„8923113531 šŸ”Call Girls Kakori Lucknow best sexual service Online ā˜‚ļø
CALL ON āž„8923113531 šŸ”Call Girls Kakori Lucknow best sexual service Online  ā˜‚ļøCALL ON āž„8923113531 šŸ”Call Girls Kakori Lucknow best sexual service Online  ā˜‚ļø
CALL ON āž„8923113531 šŸ”Call Girls Kakori Lucknow best sexual service Online ā˜‚ļø
Ā 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
Ā 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Ā 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
Ā 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Ā 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlanā€™s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlanā€™s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlanā€™s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlanā€™s ...
Ā 

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