Personal Software Process (PSP)
|
|
|
- Madlyn Barnett
- 9 years ago
- Views:
Transcription
1 Personal Software Process (PSP) Application of CMM principles to individuals Developed by Watts Humphrey of the Software Engineering Institute (SEI) in the early 1990s Extensive supporting materials: books, courses, forms, exercises Validated by data from numerous projects 58% reduction in defects/kloc (development) 72% reduction in defects/kloc (testing) 21% improvement in productivity Complemented by Team Software Process (TSP) Strict waterfall plus process monitoring and improvement 6/18/ , Spencer Rugaber 1
2 PSP and CMM Complementary CMM is top-down - management oriented PSP is bottom-up - engineer oriented Level 2 Software configuration management Software quality assurance Software subcontract management Software project tracking and oversight Software project planning Requirements management Level 3 Peer reviews Intergroup coordination Software product engineering Integrated software management Training program Organization process definition Organization process focus Level 4 Software quality management Quantitative process management Level 5 Process change management Technology change management Defect prevention 6/18/ , Spencer Rugaber 2
3 Overview Disciplined personal framework for developing software LOC projects Metrics, forms, and scripts Produce low-defect products on schedule and within planned costs Manage quality, analyze results, improve process 6/18/ , Spencer Rugaber 3
4 Assumptions/Principles Every engineer is different. To be most effective, engineers must plan their work, and they must base their plans on their own personal data To consistently improve their performance, engineers must use well-defined and measured processes To produce quality products, engineers must feel personally responsible for the quality It costs less to find and fix defects earlier in a process than later The right way is always the fastest and cheapest way to do a job 6/18/ , Spencer Rugaber 4
5 Overall Approach Experienced programmers inject one defect per 7-10 lines of code People tend to make the same mistakes repeatedly To improve your organization's performance Record data on defects; review data; make process changes to eliminate causes Spend more up front time (design and detection activities) 6/18/ , Spencer Rugaber 5
6 Requirements Process Planning Design Plans Structure Design Review Scripts Code Logs Results Code Review Compile Test Time Defects Plan summary Postmortem Finished Product Project and process data summary report 6/18/ , Spencer Rugaber 6
7 PSP Phases Phase Emphasis Features Personal Management Personal Planning Personal Quality Scaling Up Current process plus basic measures: development time, defects injected and removed; process: planning, development, analysis Coding standards, process improvement proposal form, size measurements PROBE; Size estimation, time estimates, test report Task planning, schedule planning Defect management: code reviews, design reviews Design specification and analysis; defect prevention; process analysis; process benchmarks Cyclic development 6/18/ , Spencer Rugaber 7
8 PSP0 Personal measurement Forms and scripts Time, defects injected and removed Phases: planning, development, postmortem PSP0.1: add in coding standards, size measurement, and process improvement proposal 6/18/ , Spencer Rugaber 8
9 PSP1 Personal planning PROBE estimation; confidence intervals PSP1.1: schedule and task planning 6/18/ , Spencer Rugaber 9
10 PSP1 Process Script (SEI) 6/18/ , Spencer Rugaber 10
11 PSP2 Personal quality Defect management: data, review checklists PSP2.1: design specification, defect prevention, process analysis, process benchmarks 6/18/ , Spencer Rugaber 11
12 PSP3 Scaling up Cyclic development Design verification; process definition principles Subsumed by TSP 6/18/ , Spencer Rugaber 12
13 Overall PSP Strategy 1. Gather data 2. Estimate and plan 3. Manage defects 4. Manage yield 5. Control cost of quality 6/18/ , Spencer Rugaber 13
14 1. Gathering Data Measurements taken Time in each process activity (and for interrupts) Defects introduced and removed for each activity Developed product size (LOC) Base, added, modified, deleted, new and changed, reused, new reuse, total Metrics computed Size and time estimating error Cost-performance index Defect Injected and removed per hour Density Process yield Appraisal and failure cost of quality Appraisal to failure ratio 6/18/ , Spencer Rugaber 14
15 2. Estimate and Plan PROBE - proxy based estimation method PSP proxies: functions and object Others include function points, screens, reports, sections of text Linear regression on at least 3 prior projects Goal is to improve estimates over time PSP students improved their size estimates from 31% (within 20%) to 42% between programs one and ten Improved time estimates from 33% (within 20%) to 49% 6/18/ , Spencer Rugaber 15
16 Example PROBE Data (C++) 6/18/ , Spencer Rugaber 16
17 Size Categories (SEI) Base When an existing product is enhanced, base LOC is the size of the original product version before any modifications are made. Added Code written for a new program or added to an existing base program. Modified LOC in an existing (Base) program that are changed. Deleted LOC in an existing (Base) program that are deleted. New and Changed When engineers develop software, it takes them much more time to add or modify a LOC than it does to delete or reuse one. Thus, in the PSP, engineers use only the Added or Modified code to make size and resource estimates. This code is called the New and Changed LOC. Reused Code taken from a reuse library and used, without modification, in a new program. Reuse does not count the unmodified base code retained from a prior program version and it does not count any code that is reused with modifications. New Reuse LOC that an engineer develops and contributes to the reuse library. Total Total size of a program, regardless of its source (= Base - Deleted + Added + Reuse). 6/18/ , Spencer Rugaber 17
18 3. Manage Defects Record, for each defect Activity (phase) during which defect was injected and removed Planning, design, design review, code, code review, compile, test Defect type (next slide) Fix time Description Students reduced defect rates from 116/KLOC to 49/KLOC between programs one and ten Standard deviation also reduced 6/18/ , Spencer Rugaber 18
19 Defect Types Type Number Type Name Documentation Syntax Build, package Assignment Interface Checking Data Function System Environment comments, messages spelling, punctuation, types, instruction formats change management, library, version control declaration, duplicate name, scope, limits procedure calls and references, I/O, user format error messages, inadequate checks structure, content Description logic, pointers, loops, recursion, computations, function defects configuration, timing, memory design, compile, test, or other support-system problems 6/18/ , Spencer Rugaber 19
20 Defects per KLOC Trend (Humphrey - Fig. 4) Observations Standard deviation also reduced Student programmers Hawthorn effect? Compilation defects fall faster 6/18/ , Spencer Rugaber 20
21 Question Would you rather have your testing group uncover a lot of failures or a few? 6/18/ , Spencer Rugaber 21
22 Would you rather have your testing group uncover a lot of failures or a few? Question 6/18/ , Spencer Rugaber 22
23 4. Manage Yield Yield is PSP's principle quality measure If it is costly to find a defect during testing, then you need to find it earlier (during review) (Or not insert it in the first place) Hold review before compilation (But aren't compilers cheaper than programmers?) (And desk check every new compilation) 6/18/ , Spencer Rugaber 23
24 Yield Yield: % defects found and fixed before compilation Engineers review code before first compile 9% of "syntax" error get by compiler Defects found at compile time correlate with defects found during test (r =.71) Strong correlation between defects found during test and customer failures (r =.91) Introduction of design and code reviews strongly improves yield 6/18/ , Spencer Rugaber 24
25 Yield versus Program Number (Humphrey - Fig. 7) Observations Program 7 introduced reviews 6/18/ , Spencer Rugaber 25
26 5. Control Cost of Quality Appraisal cost Time spent in design and code reviews Failure cost Time spent in compile and test Prevention costs Prototyping, formal specification Not part of PSP Appraisal to failure ratio (A/FR) Raise until quality is sufficient then gradually lower Initial target at least two 6/18/ , Spencer Rugaber 26
27 Total Defects per KLOC versus A/FR (Humphrey - Fig. 9) Observations Little improvement after 3:1 Enables control of the productivity / quality tradeoff 6/18/ , Spencer Rugaber 27
28 How Much Time should you Spend in Reviews? 6/18/ , Spencer Rugaber 28
29 How Much Time should you Spend in Reviews? Spend as much time reviewing as is required to detect and remove all defects injected during the activity being reviewed Depends on the rates of fault injection and removal per time unit This means that you had better measure these rates PSP measurements on students indicate that they should spend 59% as much time reviewing as injecting for design activities and 65% for code 6/18/ , Spencer Rugaber 29
30 Another Answer PSP rule of thumb is to find twice as many problems during code review as you do during testing So if for module A, you found 15 during review and 45 during testing, you need to increase your review time by a factor of six! 15 * 6 = 90 = 2 * 45 6/18/ , Spencer Rugaber 30
31 Design PSP does not prescribe a design method Instead, it emphasized design completion So it recommends making sure of the following Example schema External static Function interfaces: signatures, inheritance External dynamic Operational scenarios, call/return Internal static Attributes, constraints Internal dynamic State machines, response time, interrupts 6/18/ , Spencer Rugaber 31
32 PSP Results Estimation improvement Reduced variance leads to better scheduling and staffing Reduced compile and test defects Correlated with reduced customer-detected failures Mild productivity improvement 6/18/ , Spencer Rugaber 32
33 PSP Benefits Increases personal commitment by investing each engineer with process responsibility Assists engineers in making accurate plans Provides steps engineers can take to improve personal and project quality Sets benchmarks to measure personal process improvements Demonstrates the impact of process changes on an engineer's performance 6/18/ , Spencer Rugaber 33
The Personal Software Process (PSP) Tutorial
The Personal Software Process (PSP) Tutorial Watts Humphrey / Jim Over Speaker: Daniel M. Roy (STPP, visiting scientist SEI) Software Engineering Institute Carnegie Mellon University Pittsburgh, PA 15213
Assignment Kits. Summary Kit Contents Lecture 1: Kit cover sheet (page 40)
Assignment Kits These assignment kits contain the forms students need to do the assignments in the textbook A Discipline for Software Engineering by Watts S. Humphrey. In using them: - Provide each student
SEI Level 2, 3, 4, & 5 1 Work Breakdown Structure (WBS)
SEI Level 2, 3, 4, & 5 1 Work Breakdown Structure (WBS) 1.0 SEI Product 1.1 SEI Level 2 Product 1.1.1 SEI Level 2 Process 1.1.1.1 Requirements Management Process 1.1.1.2 Software Project Planning Process
Software Quality Data Part 1: Basic and Derived Metrics
Abstract We measure, quantify and report on software quality. But can we control it? Can we actually assure quality (as opposed to just measuring it)? This is the first of three papers in which we will
A quality software process for rapid application development
Software Quality Journal 7, 107 122 (1998) A quality software process for rapid application development GERRY COLEMAN 1 and RENAAT VERBRUGGEN 2 1 Centre for Software Engineering and 2 Dublin City University
Software Engineering Introduction & Background. Complaints. General Problems. Department of Computer Science Kent State University
Software Engineering Introduction & Background Department of Computer Science Kent State University Complaints Software production is often done by amateurs Software development is done by tinkering or
Fundamentals of Measurements
Objective Software Project Measurements Slide 1 Fundamentals of Measurements Educational Objective: To review the fundamentals of software measurement, to illustrate that measurement plays a central role
Reaching CMM Levels 2 and 3 with the Rational Unified Process
Reaching CMM Levels 2 and 3 with the Rational Unified Process Rational Software White Paper TP174 Table of Contents INTRODUCTION... 1 LEVEL-2, REPEATABLE... 3 Requirements Management... 3 Software Project
(Refer Slide Time: 01:52)
Software Engineering Prof. N. L. Sarda Computer Science & Engineering Indian Institute of Technology, Bombay Lecture - 2 Introduction to Software Engineering Challenges, Process Models etc (Part 2) This
OVERVIEW FUNDAMENTALS OF SOFTWARE ENGINEERING PROJECT MANAGEMENT
FUNDAMENTALS OF SOFTWARE ENGINEERING PROJECT MANAGEMENT Johan Gouws B.Eng. & M.Eng. (Elec.) (Rand Afrikaans University, South Africa) MBA (Heriot-Watt University, Scotland) Ph.D. (Wageningen, the Netherlands)
Software Engineering: Analysis and Design - CSE3308
CSE3308/DMS/2004/25 Monash University - School of Computer Science and Software Engineering Software Engineering: Analysis and Design - CSE3308 Software Quality CSE3308 - Software Engineering: Analysis
How To Write An Slcm Project Plan
SLCM 2003.1 Artifacts in a Nutshell ( as of 01/21/2005) Project Development Phases Pension Benefit Guaranty Corporation s (PBGC) System Life Cycle Methodology (SLCM) is comprised of five project development
Example Software Development Process.
Example Software Development Process. The example software development process is shown in Figure A. The boxes represent the software development process kernels. The Software Unit Testing, Software Component
An Introduction to. Metrics. used during. Software Development
An Introduction to Metrics used during Software Development Life Cycle www.softwaretestinggenius.com Page 1 of 10 Define the Metric Objectives You can t control what you can t measure. This is a quote
ADVANCED SCHOOL OF SYSTEMS AND DATA STUDIES (ASSDAS) PROGRAM: CTech in Computer Science
ADVANCED SCHOOL OF SYSTEMS AND DATA STUDIES (ASSDAS) PROGRAM: CTech in Computer Science Program Schedule CTech Computer Science Credits CS101 Computer Science I 3 MATH100 Foundations of Mathematics and
CSC 408F/CSC2105F Lecture Notes
CSC 408F/CSC2105F Lecture Notes These lecture notes are provided for the personal use of students taking CSC 408H/CSC 2105H in the Fall term 2004/2005 at the University of Toronto. Copying for purposes
Darshan Institute of Engineering & Technology Unit : 7
1) Explain quality control and also explain cost of quality. Quality Control Quality control involves the series of inspections, reviews, and tests used throughout the software process to ensure each work
The Team Software Process SM (TSP SM )
The Team Software Process SM (TSP SM ) Watts S. Humphrey November 2000 TECHNICAL REPORT CMU/SEI-2000-TR-023 ESC-TR-2000-023 Pittsburgh, PA 15213-3890 The Team Software Process SM (TSP SM ) CMU/SEI-2000-TR-023
Process Improvement. Objectives
Process Improvement cmsc435-1 Objectives To explain the principles of software process improvement To explain how software process factors influence software quality and productivity To introduce the SEI
Software Development Life Cycle (SDLC)
Software Development Life Cycle (SDLC) Supriyo Bhattacharjee MOF Capability Maturity Model (CMM) A bench-mark for measuring the maturity of an organization s software process CMM defines 5 levels of process
Testing Metrics. Introduction
Introduction Why Measure? What to Measure? It is often said that if something cannot be measured, it cannot be managed or improved. There is immense value in measurement, but you should always make sure
Plan-Driven Methodologies
Plan-Driven Methodologies The traditional way to develop software Based on system engineering and quality disciplines (process improvement) Standards developed from DoD & industry to make process fit a
Software cost estimation
Software cost estimation Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 26 Slide 1 Objectives To introduce the fundamentals of software costing and pricing To describe three metrics for
Basic Unix/Linux 1. Software Testing Interview Prep
Basic Unix/Linux 1 Programming Fundamentals and Concepts 2 1. What is the difference between web application and client server application? Client server application is designed typically to work in a
International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research)
International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) International Journal of Engineering, Business and Enterprise
Integrating CMMI, TSP and Change Management Principles to Accelerate Process Improvement
R Integrating CMMI, TSP and Change Management Principles to Accelerate Process Improvement SM Julie Switzer, P-3 Process Improvement Lead, NAVAIR Orville Starnes, TSP Launch Coach, NAVAIR R CMM, CMMI and
A Study on Software Metrics and Phase based Defect Removal Pattern Technique for Project Management
International Journal of Soft Computing and Engineering (IJSCE) A Study on Software Metrics and Phase based Defect Removal Pattern Technique for Project Management Jayanthi.R, M Lilly Florence Abstract:
A Capability Maturity Model (CMM)
Software Development Life Cycle (SDLC) and Development Methods There are some enterprises in which a careful disorderliness is the true method. Herman Melville Capability Maturity Model (CMM) A Capability
Implementing a Personal Software Process (PSP SM ) Course: A Case Study
Journal of Software Engineering and Applications, 212, 5, 639-644 http://dx.doi.org/1.4236/jsea.212.5874 Published Online August 212 (http://www.scirp.org/journal/jsea) 639 Implementing a Personal Software
Your Software Quality is Our Business. INDEPENDENT VERIFICATION AND VALIDATION (IV&V) WHITE PAPER Prepared by Adnet, Inc.
INDEPENDENT VERIFICATION AND VALIDATION (IV&V) WHITE PAPER Prepared by Adnet, Inc. February 2013 1 Executive Summary Adnet is pleased to provide this white paper, describing our approach to performing
The Software Development Life Cycle: An Overview. Last Time. Session 8: Security and Evaluation. Information Systems Security Engineering
The Software Development Life Cycle: An Overview Presented by Maxwell Drew and Dan Kaiser Southwest State University Computer Science Program Last Time Brief review of the testing process Dynamic Testing
CSTE Mock Test - Part I - Questions Along with Answers
Note: This material is for Evaluators reference only. Caters to answers of CSTE Mock Test - Part I paper. 1. A branch is (Ans: d) a. An unconditional transfer of control from any statement to any other
MS SQL Performance (Tuning) Best Practices:
MS SQL Performance (Tuning) Best Practices: 1. Don t share the SQL server hardware with other services If other workloads are running on the same server where SQL Server is running, memory and other hardware
Instructor's Guide for Introduction to the Team Software Process By Watts S. Humphrey. With Support Tool by James W. Over.
Instructor's Guide for Introduction to the Team Software Process By Watts S. Humphrey With Support Tool by James W. Over Site Contents 1. TSPi Support Tool 2. TSPi Support Tool Instructions 3. Instructor's
Karunya University Dept. of Information Technology
PART A Questions 1. Mention any two software process models. 2. Define risk management. 3. What is a module? 4. What do you mean by requirement process? 5. Define integration testing. 6. State the main
JOURNAL OF OBJECT TECHNOLOGY
JOURNAL OF OBJECT TECHNOLOGY Online at www.jot.fm. Published by ETH Zurich, Chair of Software Engineering JOT, 2006 Vol. 5. No. 8, November-December 2006 Requirements Engineering Tasks Donald Firesmith,
Implementing CMMI for High-Performance
Implementing CMMI for High-Performance CMMI Made Practical London, January 2009 Topics Maturity and performance A high-performance improvement solution SEI support 2 Maturity Levels and Performance Many
SOFTWARE ENGINEERING IT 0301 Semester V B.Nithya,G.Lakshmi Priya Asst Professor SRM University, Kattankulathur
SOFTWARE ENGINEERING IT 0301 Semester V B.Nithya,G.Lakshmi Priya Asst Professor SRM University, Kattankulathur School of Computing, Department of IT 1 2 Process What is it? A series of predictable steps
PHASE 6: DEVELOPMENT PHASE
PHASE 6: DEVELOPMENT PHASE The Phase features a key step in the project: system construction. The previous phases lay the foundation for system development; the following phases ensure that the product
Peer Review Process Description
Peer Review Process Description Version 1.0 draft1 Table of Contents 1. Overview... 1 2. Work Aids... 1 3. Risk Assessment Guidance... 1 4. Participants... 2 5. Inspection
Knowledge Infrastructure for Project Management 1
Knowledge Infrastructure for Project Management 1 Pankaj Jalote Department of Computer Science and Engineering Indian Institute of Technology Kanpur Kanpur, India 208016 [email protected] Abstract In any
What is a life cycle model?
What is a life cycle model? Framework under which a software product is going to be developed. Defines the phases that the product under development will go through. Identifies activities involved in each
The Team Software Process SM (TSP SM ) in Practice: A Summary of Recent Results
The Team Software Process SM (TSP SM ) in Practice: A Summary of Recent Results Noopur Davis Julia Mullaney September 2003 TECHNICAL REPORT CMU/SEI-2003-TR-014 ESC-TR-2003-014 Pittsburgh, PA 15213-3890
Life Cycle Quality Gates
1 Operations Release Life Cycle Quality Gates 8 Post Implement Validation 6 Implement Build Product Test Quality Assurance 2 Versions 3 4 5 Patches 7 Design 1 10 9 Requirements Requirements Sources: Executive
Process Improvement. From the Software Engineering Institute:
Process Improvement From the Software Engineering Institute: The Software Capability Maturity Model (SW-CMM, CMMI) (Especially CMMI V1.1 Tutorial) The Personal Software Process (PSP) (Also see The Team
Quality Systems Frameworks. SE 350 Software Process & Product Quality 1
Quality Systems Frameworks 1 What is a Quality System? An organization uses quality systems to control and improve the effectiveness of the processes used to deliver a quality product or service A Quality
Measurement and Metrics Fundamentals. SE 350 Software Process & Product Quality
Measurement and Metrics Fundamentals Lecture Objectives Provide some basic concepts of metrics Quality attribute metrics and measurements Reliability, validity, error Correlation and causation Discuss
Latest Trends in Testing. Ajay K Chhokra
Latest Trends in Testing Ajay K Chhokra Introduction Software Testing is the last phase in software development lifecycle which has high impact on the quality of the final product delivered to the customer.
Chapter 23 Software Cost Estimation
Chapter 23 Software Cost Estimation Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 23 Slide 1 Software cost estimation Predicting the resources required for a software development process
Chap 1. Software Quality Management
Chap. Software Quality Management.3 Software Measurement and Metrics. Software Metrics Overview 2. Inspection Metrics 3. Product Quality Metrics 4. In-Process Quality Metrics . Software Metrics Overview
Software Testing. Quality & Testing. Software Testing
Software Testing Software Testing Error: mistake made by the programmer/developer Fault: a incorrect piece of code/document (i.e., bug) Failure: result of a fault Goal of software testing: Cause failures
Peer Review Process Description
Peer Review Process Description Version 1.0 draft1 Table of Contents 1.Overview...1 2.Work Aids...1 3.Risk Assessment Guidance...1 4.Participants...2 5.Inspection Procedure...4
Using the Agile Methodology to Mitigate the Risks of Highly Adaptive Projects
Transdyne Corporation CMMI Implementations in Small & Medium Organizations Using the Agile Methodology to Mitigate the Risks of Highly Adaptive Projects Dana Roberson Quality Software Engineer NNSA Service
Chemuturi Consultants Do it well or not at all Productivity for Software Estimators Murali Chemuturi
Productivity for Software Estimators Murali Chemuturi 1 Introduction Software estimation, namely, software size, effort, cost and schedule (duration) are often causing animated discussions among the fraternity
TITLE: Control of Software
Page 1 of 8 TITLE: Control of Software WARNING This document is the property of United Technologies Corporation (UTC). You may not possess, use, copy or disclose this document or any information in it,
Metrics in Software Test Planning and Test Design Processes
Master Thesis Software Engineering Thesis no: MSE-2007:02 January 2007 Metrics in Software Test Planning and Test Design Processes Wasif Afzal School of Engineering Blekinge Institute of Technology Box
What do you think? Definitions of Quality
What do you think? What is your definition of Quality? Would you recognise good quality bad quality Does quality simple apply to a products or does it apply to services as well? Does any company epitomise
Total Quality Management (TQM) Quality, Success and Failure. Total Quality Management (TQM) vs. Process Reengineering (BPR)
Total Quality Management (TQM) Quality, Success and Failure Total Quality Management (TQM) is a concept that makes quality control a responsibility to be shared by all people in an organization. M7011
CSTE Mock Test - Part III Questions Along with Answers
Note: This material is for Evaluators reference only. Caters to answers of CSTE Mock Test - Part III paper. 1. Independence is important in testing is mostly due to the fact that (Ans: C) a. Developers
Lecture 1: Introduction to Software Quality Assurance
Lecture 1: Introduction to Software Quality Assurance Software Quality Assurance (INSE 6260/4-UU) Winter 2009 Thanks to Rachida Dssouli for some slides Course Outline Software Quality Overview Software
Java Programming (10155)
Java Programming (10155) Rationale Statement: The world is full of problems that need to be solved or that need a program to solve them faster. In computer, programming students will learn how to solve
Root Cause Analysis for Customer Reported Problems. Topics
Root Cause Analysis for Customer Reported Problems Copyright 2008 Software Quality Consulting Inc. Slide 1 Topics Introduction Motivation Software Defect Costs Root Cause Analysis Terminology Tools and
Software Test Plan (STP) Template
(STP) Template Items that are intended to stay in as part of your document are in bold; explanatory comments are in italic text. Plain text is used where you might insert wording about your project. This
Business Application Services Testing
Business Application Services Testing Curriculum Structure Course name Duration(days) Express 2 Testing Concept and methodologies 3 Introduction to Performance Testing 3 Web Testing 2 QTP 5 SQL 5 Load
Leveraging CMMI framework for Engineering Services
Leveraging CMMI framework for Engineering Services Regu Ayyaswamy, Mala Murugappan Tata Consultancy Services Ltd. Introduction In response to Global market demand, several OEMs adopt Global Engineering
Maturity Model. March 2006. Version 1.0. P2MM Version 1.0 The OGC logo is a Registered Trade Mark of the Office of Government Commerce
Maturity Model March 2006 Version 1.0 P2MM Version 1.0 The OGC logo is a Registered Trade Mark of the Office of Government Commerce This is a Value Added product which is outside the scope of the HMSO
The Software Process. The Unified Process (Cont.) The Unified Process (Cont.)
The Software Process Xiaojun Qi 1 The Unified Process Until recently, three of the most successful object-oriented methodologies were Booch smethod Jacobson s Objectory Rumbaugh s OMT (Object Modeling
ADVANCES IN TECHNOLOGY-BASED EDUCATION: TOWARDS A KNOWLEDGE BASED SOCIETY
ADVANCES IN TECHNOLOGY-BASED EDUCATION: TOWARDS A KNOWLEDGE BASED SOCIETY Proceedings of the II International Conference on Multimedia and Information & Communication Technologies in Education m-icte2003
Software cost estimation
Software cost estimation Sommerville Chapter 26 Objectives To introduce the fundamentals of software costing and pricing To describe three metrics for software productivity assessment To explain why different
SOFTWARE VALUE ENGINEERING IN DEVELOPMENT PROCESS
SOFTWARE VALUE ENGINEERING IN DEVELOPMENT PROCESS Pawel Grzegrzolka University of Gdansk, Department of Business Informatics, Piaskowa 9, 81-864 Sopot, Poland, [email protected] Abstract. This
CSSE 372 Software Project Management: Managing Software Projects with Measures
CSSE 372 Software Project Management: Managing Software Projects with Measures Shawn Bohner Office: Moench Room F212 Phone: (812) 877-8685 Email: [email protected] Dimensional Analysis Abuse Learning
AP Computer Science A - Syllabus Overview of AP Computer Science A Computer Facilities
AP Computer Science A - Syllabus Overview of AP Computer Science A Computer Facilities The classroom is set up like a traditional classroom on the left side of the room. This is where I will conduct my
Quantitative Project Management Framework via Integrating
Quantitative Project Management Framework via Integrating Six Sigma and PSP/TSP Sejun Kim, BISTel Okjoo Choi, Jongmoon Baik, Abstract: Process technologies such as Personal Software Process SM (PSP) and
How to Write a Software Process Procedures and Policy Manual for YOUR COMPANY
How to Write a Software Process for YOUR COMPANY 1. Introduction MicroTools is proposing to assist YOUR COMPANY in improving the existing software process. The purpose of this project is to both improve
Agile Development and Testing Practices highlighted by the case studies as being particularly valuable from a software quality perspective
Agile Development and Testing Practices highlighted by the case studies as being particularly valuable from a software quality perspective Iteration Advantages: bringing testing into the development life
Software Project Management Matrics. Complied by Heng Sovannarith [email protected]
Software Project Management Matrics Complied by Heng Sovannarith [email protected] Introduction Hardware is declining while software is increasing. Software Crisis: Schedule and cost estimates
Process Models and Metrics
Process Models and Metrics PROCESS MODELS AND METRICS These models and metrics capture information about the processes being performed We can model and measure the definition of the process process performers
Cost Estimation Strategies COST ESTIMATION GUIDELINES
Cost Estimation Strategies Algorithmic models (Rayleigh curve Cost in week t = K a t exp(-a t 2 ) Expert judgment (9 step model presented later) Analogy (Use similar systems) Parkinson (Work expands to
1. Introduction. Annex 7 Software Project Audit Process
Annex 7 Software Project Audit Process 1. Introduction 1.1 Purpose Purpose of this document is to describe the Software Project Audit Process which capable of capturing different different activities take
ESTABLISHING A MEASUREMENT PROGRAM
ESTABLISHING A MEASUREMENT PROGRAM The most important rule is to Understand that software measurement is a means to an end, not an end in itself Three key reasons for Software Measurement Understanding
Draft Documents RFP 3.2.4
Draft Documents RFP 3.2.4 In accordance with RFP 3.2.4, CNSI includes the required draft documents in the following order: Work Plan: Team CNSI provides a comprehensive draft Work Plan for the Iowa EHR
Module 10. Coding and Testing. Version 2 CSE IIT, Kharagpur
Module 10 Coding and Testing Lesson 23 Code Review Specific Instructional Objectives At the end of this lesson the student would be able to: Identify the necessity of coding standards. Differentiate between
Definitions. Software Metrics. Why Measure Software? Example Metrics. Software Engineering. Determine quality of the current product or process
Definitions Software Metrics Software Engineering Measure - quantitative indication of extent, amount, dimension, capacity, or size of some attribute of a product or process. Number of errors Metric -
Pattern Insight Clone Detection
Pattern Insight Clone Detection TM The fastest, most effective way to discover all similar code segments What is Clone Detection? Pattern Insight Clone Detection is a powerful pattern discovery technology
Software Development Process
Software Development Process A software development process, also known as software development lifecycle, is a structure imposed on the development of a software product. Similar terms include software
