First, a detailed description of function points Then, how to use function points and lines of code for cost estimation.

Size: px
Start display at page:

Download "First, a detailed description of function points Then, how to use function points and lines of code for cost estimation."

Transcription

1 Cost Page 1 Cost modeling Monday, October 05, :17 AM First, a detailed description of function points Then, how to use function points and lines of code for cost estimation. Reading: SEPA Chapter 27.

2 Cost Page 2 Function points Monday, October 05, :18 AM First, tabulate the interfaces of your software with the outside world External Inputs (EIs): originate from users or are transmitted from another application. External Outputs (EOs): sent to user or to another application. External Inquiries (EQs): transactions in which an external source requests and receives information about application state. Internal Logical Files (ILFs): logical groupings of data that reside within the application. External Interface Files (EIFs): files external to the application that are used by the application.

3 Cost Page 3 The FP table Monday, October 05, :22 AM weights Information Domain simple avg complex External Inputs External Outputs External Inquiries Internal Logical Files External Interface Files Basic (raw) function points count interfaces multiply by weight add together

4 Cost Page 4 Example 1: ATM Monday, October 05, :27 AM An ATM machine reads a customer' s card number from a credit card. It then asks the customer to type the last four digits of the card number, and compares them with the number read from the card to make sure it read the card correctly. If the numbers match, the ATM machine asks the customer for a PIN code and compares that with a PIN code stored on its central server for the card number. If those match, the customer is given access; otherwise access is denied. External inputs: card number, last four digits, PIN code, response from server External outputs: ask for digits, ask for PIN, inform of access, ask central server whether PIN matches. External inquiries: 0 Internal logical files: 0 External interface files: 0 Function point calculation: 4 * 3 (simple) + 4 * 4 (simple) = 28 function points.

5 Cost Page 5 Example 2: Airplane GPS Monday, October 05, :37 AM An airplane navigational GPS system takes input from up to 12 navigational satellites and outputs a display of current location to the pilot. It overlays satellite maps obtained from locally stored data onto its display. It also provides a different display to passengers, which has three screens (local, flight, and world). It also responds to queries for airplane location from air traffic control using the aircraft's radio system, and sends its location to the flight recorder. External Inputs: 12 (average) External outputs: 6 (complex) External inquiries: 1 (simple) Internal logical files: 1 (complex) External Interface files: 0 Domain Value simple avg complex EIs EOs EQs ILFs EIFs *4+6*7+1*3+1*15 = 108 Function Points

6 Cost Page 6 Adjustment Monday, October 05, :48 AM Adjustment factors Function points describe what the application interacts with. But there is more than just interaction. Solution: scale the FP value according to expectations. Adjustment factor questionnaire (page 621). 1. Does the system require reliable backup and recovery? 2. Are specialized data communications required to transfer information to or from the application? 3. Are there distributed processing functions? 4. Is performance critical? 5. Will the system run in an existing, heavily utilized operational environment? 6. Does the system require online data entry? 7. Does the online data entry require the input transactions to be built over multiple screens or operations? 8. Are the Internal Logical Files (ILFs) updated online? 9. Are the inputs, outputs, files, or inquiries complex? 10. Is the internal processing complex? 11. Is the code designed to be reusable? 12. Are conversion and installation included in the design? 13. Is the system designed for multiple installations in different organizations? 14. Is the application designed to facilitate change and ease of use by the user?

7 Cost Page 7 Example 1 cont'd: adjustment factors Monday, October 05, :57 AM An ATM machine reads a customer' s card number from a credit card. It then asks the customer to type the last four digits of the card number, and compares them with the number read from the card to make sure it read the card correctly. If the numbers match, the ATM machine asks the customer for a PIN code and compares that with a PIN code stored on its central server for the card number. If those match, the customer is given access; otherwise access is denied. Adjustment factor questionaire. 1. Backup and recovery? 2. Specialized data communications? 3. Distributed processing functions? 4. Is performance critical? 5. Heavily utilized environment? 6. Online data entry? 7. Multiple screens or operations? 8. ILFs updated online? 9. Are data complex? 10. Internal processing complex? 11. Designed to be reusable? 12. Conversion and installation included? 13. Multiple installations in different organizations? 14. Change and ease of use by the user? Adjustment factors = 20 Adjusted function points = counted points * ( *sum of factors) = 28*( *20) = 23.8

8 Cost Page 8 Example 2 cont'd Monday, October 05, :57 AM An airplane navigational GPS system takes input from up to 12 navigational satellites and outputs a display of current location to the pilot. It overlays satellite maps obtained from locally stored data onto its display. It also provides a different display to passengers, which has three screens (local, flight, and world). It also responds to queries for airplane location from air traffic control using the aircraft's radio system, and sends its location to the flight recorder. Adjustment factor questionaire. 1. Backup and recovery? 2. Specialized data communications? 3. Distributed processing functions? 4. Is performance critical? 5. Heavily utilized environment? 6. Online data entry? 7. Multiple screens or operations? 8. ILFs updated online? 9. Are data complex? 10. Internal processing complex? 11. Designed to be reusable? 12. Conversion and installation included? 13. Multiple installations in different organizations? 14. Change and ease of use by the user? Adjustment factors = 31 Adjusted function points = counted points * ( *sum of factors) = 108*( *31) =

9 Cost Page 9 From function points to cost Monday, October 05, :20 PM Cost models vary in what their inputs are Some take function points object points lines of code LOC per FP (Page 674) lang median low high C C Note the variation in translation for C!

10 Cost Page 10 Simple cost modeling Monday, October 05, :15 PM If a certain size of project S has taken a P person months, and you have the same size project, then yours will take P person months as well. But is this linear, i.e., can one really say that a project of size 2S takes 2P months? For a million reasons, no!

11 Cost Page 11 Simple cost estimation Monday, October 05, :39 PM Statistical cost estimation Input: FP and cost for several historical projects. Method: fit Effort in person months = A + B * (KLOC) C to historical data for KLOC and effort to determine A, B, C. Computation: plug in measured KLOC, get effort.

12 Cost Page 12 COCOMO-81 Monday, October 05, :50 PM COCOMO: the constructive cost model Proposed by Boehm Has gone through several revisions Basic idea: COCOMO-81 Basic idea of COCOMO-81: (simple estimation) Characterize the software to be written Organic: having few inputs and outputs (e.g., cat). Semi-detached: interacting in an average way with the operating system (e.g., gcc) Embedded: interacting in a sophisticated manner with the operating system (e.g., emacs). Then effort in person months is E = a(kloc) b where a and b are determined by the following table: Project a b Organic Semi-detached Embedded And development time in months is D=c(E) d where c and d are determined by the following table: Project c d Organic Semi-detached Embedded

13 Cost Page 13 Putnam's equation Monday, October 05, :50 PM Some intuition: Putnam's equation LOC * B 1/3 E = P * T 4 where LOC = lines of code B = "special skills factor" P = productivity factor T = project duration in months E = estimated person-months typical values: P=2,000 P=10,000 P=28,000 B=.16 B=.36 embedded systems systems software business systems small programs > 70 KLOC

14 Cost Page 14 COCOMO-II Monday, October 05, :51 PM Generations of CoCoMo COCOMO-I: simple estimates of effort based upon software attributes COCOMO-II: tiered cost estimation based upon Product complexity Project attributes Site attributes That becomes more accurate as the project progresses.

15 Cost Page 15 Inside COCOMO-II Monday, October 05, :54 PM Basic attributes systems engineering cost drivers: things that make designing the system more difficult. software scale drivers: things that make development more difficult software cost drivers: things that affect development time product: complexity measures personnel: capability measures platform: time and storage constraints project: quality of software tools Two kinds of estimation: COSYSMO: model system engineering process. Concerned with how long it takes to design a solution to rough requirements. COCOMO: model software implementation process. Concerned with how long it takes to write the solution.

16 Cost Page 16 Uncertainty Monday, October 05, :11 PM All cost modeling has some uncertainty is your measurement of project complexity accurate? is your description of staff capabilities accurate? are the documented cases used to calibrate the model similar to yours?

17 Cost Page 17 Coping with uncertainty Monday, October 05, :13 PM Coping with uncertainty Estimate pessimistic, optimistic, and likely scenerios. pessimistic: complexity is higher than expected, or equivalently, capability is lower optimistic: complexity is lower than expected, or equivalently, capability is higher. Use pessimistic and optimistic cases to bound cost. Use some average, e.g., (P + 4L + O)/6 as a realistic estimate, where P=pessimistic alternative L=likely alternative O=optimistic alternative

Software Efforts & Cost Estimation Matrices and Models. By: Sharaf Hussain

Software Efforts & Cost Estimation Matrices and Models. By: Sharaf Hussain Software Efforts & Cost Estimation Matrices and Models By: Sharaf Hussain Techniques for estimating Software Cost Lines of Code Function Point COCOMO SLIM Lines of code (LOC) Lines of Code LOC NCLOC (Non

More information

Estimation Based on Function Points

Estimation Based on Function Points EECS811: IT Project Management(University of Kansas, Spring 2013) Slide 1 Estimation Based on Function Points Based on the Number of input items (I): those items provided by the user that describe distinct

More information

4-3 Software Measurement

4-3 Software Measurement 4-3 Software Measurement Measurements in the physical world can be categorized in two ways: direct measures (e.g., the length of a bolt) and indirect measures (e.g., the "quality" of bolts produced, measured

More information

SENG380:Software Process and Management. Software Size and Effort Estimation Part2

SENG380:Software Process and Management. Software Size and Effort Estimation Part2 SENG380:Software Process and Management Software Size and Effort Estimation Part2 1 IFPUG File Type Complexity Table 1 External user type External input types External output types Low Average High 3 4

More information

Software Project Planning The overall goal of project planning is to establish a pragmatic strategy for controlling, tracking, and monitoring a comple

Software Project Planning The overall goal of project planning is to establish a pragmatic strategy for controlling, tracking, and monitoring a comple Estimation for Software Projects 1 Software Project Planning The overall goal of project planning is to establish a pragmatic strategy for controlling, tracking, and monitoring a complex technical project.

More information

Information Technology Project Management. Copyright 2012 John Wiley & Sons, Inc.

Information Technology Project Management. Copyright 2012 John Wiley & Sons, Inc. Information Technology Project Management 6-1 Copyright 2012 John Wiley & Sons, Inc. Estimating Techniques - Software Engineering Approaches Lines of Code (LOC) Function Points COCOMO Heuristics Software

More information

Chapter 5: Software effort estimation- part 2

Chapter 5: Software effort estimation- part 2 Chapter 5: Software effort estimation- part 2 NET481: Project Management Afnan Albahli " Topics to be covered Difficulties of Estimation Where are estimates done? Problems of over- and under- estimate

More information

Software Project Management. Software effort

Software Project Management. Software effort Software Project Management Chapter Five Software effort estimation 1 Objectives The lecture discusses: why estimating is problematic (or challenging ) the main generic approaches to estimating, including:

More information

Concepts of Project Management. All projects have followings.

Concepts of Project Management. All projects have followings. Concepts of Project Management All projects have followings. An overall goal A project manager Individual tasks to be performed Timing for those tasks to be completed (such as three hours, three days,

More information

COCOMO Models 26/12/2016 1

COCOMO Models 26/12/2016 1 COCOMO Models 26/12/2016 1 Project Management and Mr. Murphy 1. Logic is a systematic method of coming to the wrong conclusion with confidence. 2. Technology is dominated by those who manage what they

More information

Figure 1 Function Point items and project category weightings

Figure 1 Function Point items and project category weightings Software measurement There are two significant approaches to measurement that project managers need to be familiar with. These are Function Point Analysis (Albrecht, 1979) and COCOMO (Boehm, 1981). 1.

More information

Software Estimation. Estimating Software Size

Software Estimation. Estimating Software Size Appendix C - Software Estimation 1 Software Estimation Accurately estimating software size, cost, effort, and schedule is probably the biggest challenge facing software developers today. A discussion of

More information

SOFTWARE PROJECT MANAGEMENT AND COST ESTIMATION

SOFTWARE PROJECT MANAGEMENT AND COST ESTIMATION SOFTWARE PROJECT MANAGEMENT AND COST ESTIMATION COMP 319 University of Liverpool slide 1 Communication Training Intercommunication Effort increases as: n(n 1)/2 3 workers require three times as much pair-wise

More information

An Empirical Validation of Mobile Application Effort Estimation Models

An Empirical Validation of Mobile Application Effort Estimation Models , March 5-7, 207, Hong Kong An Empirical Validation of Mobile Application Effort Estimation Models Tharwon Arnuphaptrairong and Wachira Suksawasd Abstract Software effort and cost estimation are necessary

More information

MTAT Software Economics. Session 6: Software Cost Estimation

MTAT Software Economics. Session 6: Software Cost Estimation MTAT.03.244 Software Economics Session 6: Software Cost Estimation Marlon Dumas marlon.dumas ät ut. ee Outline Estimating Software Size Estimating Effort Estimating Duration 2 For Discussion It is hopeless

More information

Introduction to Function Points

Introduction to Function Points Introduction to Function Points Mauricio Aguiar International Function Point Users Group 191 Clarksville Rd. Princeton Junction, NJ 08550 Tel: 609-799-4900 Email: ifpug@ifpug.org Web: www.ifpug.org 1 Credits:

More information

Software Project Management

Software Project Management Software Project Management Ali Ameer Gondal Assistant Professor University of Engineering & Technology Taxila, Pakistan ali.ameer@uettaxila.edu.pk 27 th Oct. 2011 Software Project Management Lecture #

More information

Received on: Accepted on: Abstract

Received on: Accepted on: Abstract ISSN: 0975-766X CODEN: IJPTFI Available Online through Research Article www.ijptonline.com SOFTWARE DEVELOPMENT EFFORT AND DURATION ESTIMATES USING SIZE BASED FP METHODOLOGY M.Bala Subramanian*, G. Rajarajeswari**

More information

Evaluation of Software Hazard and Cost by Commercial Point-of-View

Evaluation of Software Hazard and Cost by Commercial Point-of-View Evaluation of Software Hazard and Cost by Commercial Point-of-View Ankur Srivastava 1 Mahesh Kumar Singh 2, Abhimanyu Mishra 3 1 3 Assistant Professor, Department of CSE, Jahangirabad Group of Institutions,

More information

Boundaries, Boundaries Everywhere!

Boundaries, Boundaries Everywhere! Boundaries, Boundaries Everywhere! 2011 Thomas Cagley, Vice President t.cagley@davidconsultinggroup.com David Consulting Group Liberty Square, Suite B-2 270 W Lancaster Ave Malvern PA 19355 (440) 668-5717

More information

Software Cost Models

Software Cost Models Software Cost Models Y.Sangeetha M.Tech (Ph.d) P.Madhavi Latha Dr R.Satya Prasad Asst.Professor, Asst.Professor Associate Professor VRSEC, VRSEC Acarya Nagarjuna University Vijayawada. Vijayawada. Vijayawada.

More information

What Function Points Are and Are Not

What Function Points Are and Are Not What Function Points Are and Are Not Presented by Carol Dekkers Quality Plus Technologies, Inc. COPYRIGHT 1997 QUALITY PLUS TECHNOLOGIES, INC. PSM July 21, 1997 Page 1 Topics of Discussion Software Measurement

More information

IT-hub College, Sargodha Version: 1.0 Online Attendance Management System Date: February 20, 2017

IT-hub College, Sargodha Version: 1.0 Online Attendance Management System Date: February 20, 2017 Department of Computer Science & Information Technology University of Sargodha Online Attendance Management System Version 1.0 IT-Hub College, Sargodha 1 Table of contents Chapter 1 : Final Project Proposal...

More information

Sri Vidya College of Engineering & Technology-Virudhunagar

Sri Vidya College of Engineering & Technology-Virudhunagar Sri Vidya College of Engineering &Technology Department of Information Technology Class II Year (04 Semester) Subject Code CS6403 Subject SOFTWARE ENGINEERING Prepared By R.Vidhyalakshmi Lesson Plan for

More information

INDEX. As-is analysis, tool supporting, 302 Attributes, FPA, Availability, software contract requirement, 258

INDEX. As-is analysis, tool supporting, 302 Attributes, FPA, Availability, software contract requirement, 258 INDEX A Acceptance test phase, 200 Actual Effort (Person Hours), as estimation unit, 16 ADD (Added FP), 185, 188 Add elementary process, 79 Agile software projects case study, 202 204 complex issues in,

More information

Security Factors in Effort Estimation of Software Projects

Security Factors in Effort Estimation of Software Projects Security Factors in Effort Estimation of Software Projects Jana Sedláčková Department of Information Systems Faculty of Information Technology Brno University of Technology Božetěchova 2, 612 66 Brno,

More information

Estimating Size and Effort

Estimating Size and Effort Estimating Size and Effort Massimo Felici and Conrad Hughes mfelici@staffmail.ed.ac.uk conrad.hughes@ed.ac.uk http://www.inf.ed.ac.uk/teaching/courses/sapm/ Slides: Dr James A. Bednar SAPM Spring 2009:

More information

Software Size and Effort Estimation. Dr. Aleš Živkovič, CISA, PRINCE 2

Software Size and Effort Estimation. Dr. Aleš Živkovič, CISA, PRINCE 2 Software Size and Effort Estimation Dr. Aleš Živkovič, CISA, PRINCE 2 University of Maribor, Slovenia Faculty of Electrical Engineering and Computer Science e-mail: ales.zivkovic@uni-mb.si http://www.feri.uni-mb.si/

More information

Effective Use of Function Points for Analogous Software Estimation

Effective Use of Function Points for Analogous Software Estimation Effective Use of Function Points for Analogous Software Estimation Dan French, PMP, CFPS, CSM Principal Consultant dfrench@cobec.com 202-827-1316 www.cobec.com Agenda -Introduction -Definition of Analogous

More information

Estimating Duration and Cost. CS 390 Lecture 26 Chapter 9: Planning and Estimating. Planning and the Software Process

Estimating Duration and Cost. CS 390 Lecture 26 Chapter 9: Planning and Estimating. Planning and the Software Process CS 390 Lecture 26 Chapter 9: Planning and Estimating Before starting to build software, it is essential to plan the entire development effort in detail Planning continues during development and then postdelivery

More information

SOFTWARE ENGINEERING

SOFTWARE ENGINEERING SOFTWARE ENGINEERING Project planning Once a project is found to be feasible, software project managers undertake project planning. Project planning is undertaken and completed even before any development

More information

2011 SCEA Conference Presentation Function Point Analysis: One Size Fits All

2011 SCEA Conference Presentation Function Point Analysis: One Size Fits All 2011 SCEA Conference Presentation Function Point Analysis: One Size Fits All Dan French, CFPS dfrench@cobecconsulting.com Program Introduction Origins of Function Points Common Misconceptions Regarding

More information

Determination of Problem Frames Based on Role Activity Diagrams Leading to Function Points : A Case Study

Determination of Problem Frames Based on Role Activity Diagrams Leading to Function Points : A Case Study International Journal of Computer Science & Communication Vol. 1, No. 2, July-December 2010, pp. 121-127 Determination of Problem Frames Based on Role Activity Diagrams Leading to Function Points : A Case

More information

Contents. Today Project Management. What is Project Management? Project Management Activities. Project Resources

Contents. Today Project Management. What is Project Management? Project Management Activities. Project Resources Contents Last Time - Software Development Processes Introduction Software Development Processes Project Management Requirements Engineering Software Construction Group processes Quality Assurance Software

More information

Q/P Management Group, Inc.

Q/P Management Group, Inc. Can SAP be Function Point Counted? Debra Maschino Q/P Management Group, Inc. 10 Bow Street Stoneham, MA 02180 Tel: (781) 438-2692 FAX: (781) 438-5549 http:/www.qpmg.com 1 Introduction Can you function

More information

CSSE 372 Software Project Management: Software Estimation Fundamentals

CSSE 372 Software Project Management: Software Estimation Fundamentals CSSE 372 Software Project Management: Software Estimation Fundamentals Shawn Bohner Office: Moench Room F212 Phone: (812) 877-8685 Email: bohner@rose-hulman.edu Recall: Cleanroom Software Engineering From

More information

Project Cost Estimator A Decision Support System for Software Development By Zayd N. Sukhun and Kevin C. Krefting

Project Cost Estimator A Decision Support System for Software Development By Zayd N. Sukhun and Kevin C. Krefting Project Cost Estimator A Decision Support System for Software Development By Zayd N. Sukhun and Kevin C. Krefting Purpose The Project Cost Estimator (PCE) is a Model-Driven Decision Support System that

More information

Darshan Institute of Engineering & Technology for Diploma Studies

Darshan Institute of Engineering & Technology for Diploma Studies RESPONSIBILITY OF SOFTWARE PROJECT MANAGER Job responsibility Software project managers take the overall responsibility of project to success. The job responsibility of a project manager ranges from invisible

More information

Estimating SW Size and Effort Estimating Size and Effort

Estimating SW Size and Effort Estimating Size and Effort Estimating SW Size and Effort Estimating Size and Effort Dr. James A. Bednar jbednar@inf.ed.ac.uk http://homepages.inf.ed.ac.uk/jbednar Dr. David Robertson dr@inf.ed.ac.uk http://www.inf.ed.ac.uk/ssp/members/dave.htm

More information

UNIT V PROJECT MANAGEMENT

UNIT V PROJECT MANAGEMENT UNIT V PROJECT MANAGEMENT ESTIMATION S/W is the most expensive element of virtually all computer based systems The accuracy of a s/w project estimate is predicated on a number of things: The degree to

More information

Chapter 4 Software Process and Project Metrics

Chapter 4 Software Process and Project Metrics Chapter 4 Software Process and Project Metrics 1 Measurement & Metrics... collecting metrics is too hard... it's too time-consuming... it's too political... it won't prove anything... Anything that you

More information

Goals of course. Themes: What can you do to evaluate a new technique? How do you measure what you are doing?

Goals of course. Themes: What can you do to evaluate a new technique? How do you measure what you are doing? MSWE 607: Software Life Cycle methods and Techniques Instructor: Professor Marvin V. Zelkowitz Office: 4121 AV Williams Phone: 405-2690 or 403-8935 (Fraunhofer Center) Email (Best way to contact) mvz@cs.umd.edu

More information

Estimation for Software Projects. Slides copyright 1996, 2001, 2005, 2009 by Roger S. Pressman. For non-profit educational use only

Estimation for Software Projects. Slides copyright 1996, 2001, 2005, 2009 by Roger S. Pressman. For non-profit educational use only Chapter 26 Estimation for Software Projects Slide Set to accompany Software Engineering: A Practitioner s Approach, 7/e by Roger S. Pressman Slides copyright 1996, 2001, 2005, 2009 by Roger S. Pressman

More information

Fundamental estimation questions. Software cost estimation. Costing and pricing. Software cost components. Software pricing factors

Fundamental estimation questions. Software cost estimation. Costing and pricing. Software cost components. Software pricing factors Fundamental estimation questions Software cost estimation How much effort is required to complete an activity? How much calendar time is needed to complete an activity? What is the total cost of an activity?

More information

Management of Software Engineering. Ch. 8 1

Management of Software Engineering. Ch. 8 1 Management of Software Engineering Ch. 8 1 Project control Ch. 8 2 Work Breakdown Structure WBS describes a break down of project goal into intermediate goals Each in turn broken down in a hierarchical

More information

Professor Hausi A. Müller PhD PEng FCAE Department of Computer Science Faculty of Engineering University of Victoria

Professor Hausi A. Müller PhD PEng FCAE Department of Computer Science Faculty of Engineering University of Victoria Professor Hausi A. Müller PhD PEng FCAE Department of Computer Science Faculty of Engineering University of Victoria www.engr.uvic.ca/~seng321/ courses1.csc.uvic.ca/courses/201/spring/seng/321 SENG 321

More information

Risks Associated to Size Estimation of E-Commerce System using Function Point based Estimation Techniques

Risks Associated to Size Estimation of E-Commerce System using Function Point based Estimation Techniques Indian Journal of Science and Technology, Vol 9(7), DOI: 10.17485/ijst/2016/v9i7/85148, February 2016 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 Risks Associated to Size Estimation of E-Commerce

More information

CS Homework 5. Deadline. How to submit. Purpose. Important notes. Problem 1. CS Homework 5 p. 1

CS Homework 5. Deadline. How to submit. Purpose. Important notes. Problem 1. CS Homework 5 p. 1 CS 458 - Homework 5 p. 1 Deadline Due by 11:59 pm on Friday, October 14, 2016 How to submit CS 458 - Homework 5 Submit this homework's file using ~st10/458submit on either nrs-projects, with a homework

More information

Agile Software Development Cost Risk for Information Technology Programs

Agile Software Development Cost Risk for Information Technology Programs Agile Software Development Cost Risk for Information Technology Programs Today s Presenter John McCrillis John McCrillis has been working hardware and software cost estimating for 18 years as an operations

More information

SE Notes Mr. D. K. Bhawnani, Lect (CSE) BIT

SE Notes Mr. D. K. Bhawnani, Lect (CSE) BIT Unit 5 Software Project Management Introduction Building computer software is a complex undertaking task, which particularly involves many people working over a relatively long time. That s why software

More information

Annotation of Function Point Model over Size Estimation

Annotation of Function Point Model over Size Estimation Annotation of Function Point Model over Size Estimation Souvik Daw Avijit Das Parthasarathi paul Sikkim Manipal Institute Birla Institute of Birla Institute of of Technology Technology Technology Sikkim

More information

Chapter 2. Literatures Review

Chapter 2. Literatures Review Chapter 2 Literatures Review As we mentioned previously, before the machine learning techniques are applied to the estimation domain, the most estimation models are analytic-based. They estimate cost through

More information

Spelunking Tools - Phoenix IEEE-CS May 3, Dan Houston, Ph.D. Estimation Techniques for Software Projects

Spelunking Tools - Phoenix IEEE-CS May 3, Dan Houston, Ph.D. Estimation Techniques for Software Projects Spelunking Tools - Estimation Techniques for Software Projects Phoenix IEEE-CS May 3, 2006 Dan Houston, Ph.D. Caves Software Costing and Sizing Accuracy vs. Phase Taken from COCOMO II Model Definition

More information

Estimating Size and Effort

Estimating Size and Effort Estimating Size and Effort Dr. James A. Bednar jbednar@inf.ed.ac.uk http://homepages.inf.ed.ac.uk/jbednar Dr. David Robertson dr@inf.ed.ac.uk http://www.inf.ed.ac.uk/ssp/members/dave.htm SAPM Spring 2006:

More information

Introduction to Software Metrics

Introduction to Software Metrics Introduction to Software Metrics Outline Today we begin looking at measurement of software quality using software metrics We ll look at: What are software quality metrics? Some basic measurement theory

More information

Management and MDD. Peter Dolog dolog [at] cs [dot] aau [dot] dk E2-201 Information Systems March 6, 2007

Management and MDD. Peter Dolog dolog [at] cs [dot] aau [dot] dk E2-201 Information Systems March 6, 2007 Management and MDD Peter Dolog dolog [at] cs [dot] aau [dot] dk E2-201 Information Systems March 6, 2007 2 Management Software Engineering Management 3 Req. Design Const. Test Iterations Management 4 5

More information

Software Engineering. Lab Manual. Software Engineering BE(comp) VII semester

Software Engineering. Lab Manual. Software Engineering BE(comp) VII semester Lab Manual Software Engineering BE(comp) VII semester 1 Index Sr. No. of Programming Page No. 1 Studying Various phases of Water-Fall Model. 3 2 3 Prepare SRS for Banking or On line book store domain problem.

More information

A Review of Agile Software Effort Estimation Methods

A Review of Agile Software Effort Estimation Methods A Review of Agile Software Effort Estimation Methods Samson Wanjala Munialo. Department of Information Technology Meru University of Science and Technology Meru - Kenya Geoffrey Muchiri Muketha Department

More information

Software cost estimation

Software cost estimation Software cost estimation Joseph Bonello (based on slides by Ian Sommerville) Objectives To introduce the fundamentals of software costing and pricing To describe three metrics for software productivity

More information

Proposing New Model for Effort Estimation of Mobile Application Development

Proposing New Model for Effort Estimation of Mobile Application Development Proposing New Model for Effort Estimation of Mobile Application Development Nidhi Singh Department of Computer Science Jaypee Institute of Information Technology Noida (U.P) Devpriya Soni, PhD Department

More information

3. December seminar cost estimation W 2002/2003. Constructive cost model Department of Information Technology University of Zurich

3. December seminar cost estimation W 2002/2003. Constructive cost model Department of Information Technology University of Zurich I 3. December 2002 seminar cost estimation W 2002/2003 COCOMO Constructive cost model Department of Information Technology University of Zurich Nancy Merlo-Schett Nancy Merlo-Schett, Department of Information

More information

Cost Estimation for Projects

Cost Estimation for Projects Cost Estimation for Projects Prof. Dr. U. Aßmann Technische Universität Dresden Institut für Software- und Multimediatechnik Gruppe Softwaretechnologie http://www-st.inf.tu-dresden.de Softwaretechnologie

More information

You document these in a spreadsheet, estimate them individually and compute the total effort required.

You document these in a spreadsheet, estimate them individually and compute the total effort required. Experience-based approaches Experience-based techniques rely on judgments based on experience of past projects and the effort expended in these projects on software development activities. Typically, you

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience User Manual Release 18.3.0.0.0 Part No. F12056-01 December 2018 User Manual December 2018 Oracle Financial Services Software Limited Oracle Park Off Western Express Highway

More information

DOCUMENTING FUNCTION POINT MEASUREMENTS. By Thomas Stein CFPS, CPA, CDFM

DOCUMENTING FUNCTION POINT MEASUREMENTS. By Thomas Stein CFPS, CPA, CDFM DOCUMENTING FUNCTION POINT MEASUREMENTS By Thomas Stein CFPS, CPA, CDFM Doc u men ta tion The orderly presentation, organization, and communication of recorded special knowledge to produce a historical

More information

SELECTION OF DIRECT AND DERIVED FUNCTION POINT ESTIMATION METHODS

SELECTION OF DIRECT AND DERIVED FUNCTION POINT ESTIMATION METHODS SELECTION OF DIRECT AND DERIVED FUNCTION POINT ESTIMATION METHODS Edna Tarverdian, Michael Scott Brown, Michael Pelosi University of Maryland University College etarverdian@student.umuc.edu Michael.brown@umuc.edu

More information

Estimation Practices Understanding Software Size

Estimation Practices Understanding Software Size Estimation Practices Understanding Software Size Parthasarathy M. A Abstract Accurate software project estimations have always been a tricky process. Software being Soft, it becomes quite complex to nail

More information

utip - Early Function Point Analysis and Consistent Cost Estimating

utip - Early Function Point Analysis and Consistent Cost Estimating Guidance from the Functional Sizing Standards Committee utip - Early Function Point Analysis and Consistent Cost Estimating utip # 03 (version # 1.0 2015/07/01) Author: Adri Timp Reviewers: Diana Baklizky

More information

Software cost estimation

Software cost estimation Software cost estimation Objectives To introduce the fundamentals of software costing and pricing To describe three metrics for software productivity assessment To explain why different techniques should

More information

SOFTWARE ENGINEERING. Topics covered 1/20/2015. Chapter 3 - Project Management. Risk management Managing people Project cost Project plan & schedule

SOFTWARE ENGINEERING. Topics covered 1/20/2015. Chapter 3 - Project Management. Risk management Managing people Project cost Project plan & schedule SOFTWARE ENGINEERING Chapter 3 - Project Management Sep 2013 Chapter 2. Project Management 2 Topics covered Risk management Managing people Project cost Project plan & schedule 1 Sep 2013 Chapter 2. Project

More information

Metrics and Estimation. Metrics. Lord Kelvin

Metrics and Estimation. Metrics. Lord Kelvin These slides are based on Pressman, Chapter 15 Product Metrics, Chapter 22 Metrics for Process and Projects and Chapter 23 Estimation Metrics and Estimation Rahul Premraj + Andreas Zeller 1 Metrics Quantitative

More information

(a) (i) Define the term real-time. [2 marks]

(a) (i) Define the term real-time. [2 marks] 1. Walrus radio-tracking in the southern Chukchi Sea 2008 During the 2008 migration, researchers attached satellite radio-tags to 28 walruses in the southern Chukchi Sea region. Tracking data from this

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Chatbot on Facebook Messenger User Manual Release 18.1.0.0.0 Part No. E92727-01 January 2018 User Manual January 2018 Oracle Financial Services Software Limited Oracle

More information

Should Function Point Elements be Used to Build Prediction Models?

Should Function Point Elements be Used to Build Prediction Models? Should Function Point Elements be Used to Build Prediction Models? Kohei Yoshigami, Masateru Tsunoda Department of Informatics Kindai University Osaka, Japan tsunoda@info.kindai.ac.jp Yuto Yamada, Shinji

More information

Headquarters U.S. Air Force

Headquarters U.S. Air Force Headquarters U.S. Air Force Software Sizing Lines of Code and Beyond Air Force Cost Analysis Agency Corinne Wallshein June 2009 1 Presentation Overview About software sizing Meaning Sources Importance

More information

CS Homework 6 p. 1. CS Homework 6

CS Homework 6 p. 1. CS Homework 6 CS 458 - Homework 6 p. 1 Deadline CS 458 - Homework 6 Problems 1 through 4 were completed during the specified CS 458 class sessions. Problems 5 onward are due by 11:59 pm on Friday, October 13, 2017 Purpose

More information

DUKE, STEPHEN OROK OKOR AND OBIDINNU, JULIUS NWAFILI

DUKE, STEPHEN OROK OKOR AND OBIDINNU, JULIUS NWAFILI GLOBAL JOURNAL OF PUR AND APPLID SCINCS VOL 16, NO. 4 2010: 479-492 COPYRIGHT BACHUDO SCINC CO. LTD PRINTD IN NIGRIA. ISSN 1118-0579 www.globaljournalseries.com; mail: info@globaljournalseries.com AN IMPROVD

More information

Why SNAP? What is SNAP (in a nutshell)? Does SNAP work? How to use SNAP when we already use Function Points? How can I learn more? What s next?

Why SNAP? What is SNAP (in a nutshell)? Does SNAP work? How to use SNAP when we already use Function Points? How can I learn more? What s next? 1 Agenda Why SNAP? What is SNAP (in a nutshell)? Does SNAP work? How to use SNAP when we already use Function Points? How can I learn more? What s next? 2 Agenda Why SNAP? What is SNAP (in a nutshell)?

More information

INDEX. O Organic mode 1

INDEX. O Organic mode 1 INDEX O Organic mode 1 P Paste 23, 26 Percent of Code Modification (CM) 5 Percent of Design Modification (DM) 5 Percent of Integration Required for Modified Software (IM) 5 Person-Month 2 Personnel 27

More information

Control Enhancement Projects based on Size Measurement

Control Enhancement Projects based on Size Measurement Control Enhancement Projects based on Size Measurement Ton Dekkers 0 What management wants Projects successful within Quality, Time & Money Fast time-to-market Assured delivery date Performance In-house,

More information

GEARING FACTORS. The A FLEXIBLE SIZING APPROACH

GEARING FACTORS. The A FLEXIBLE SIZING APPROACH GEARING FACTORS The A FLEXIBLE SIZING APPROACH MB Duration (Months) DERIVING GEARING FACTORS Determining the scope of a proposed system is one of the most challenging aspects of any software estimate.

More information

CHAPTER 6 AN ANALYSIS OF EXISTING SOFTWARE ESTIMATION TECHNIQUES

CHAPTER 6 AN ANALYSIS OF EXISTING SOFTWARE ESTIMATION TECHNIQUES 54 CHAPTER 6 AN ANALYSIS OF EXISTING SOFTWARE ESTIMATION TECHNIQUES This chapter describes the series of techniques that are implemented in the hybrid tool. Several programs, with Graphic User Interfaces

More information

Simple Empirical Software Effort Estimation Models

Simple Empirical Software Effort Estimation Models University of Southern California Center for Systems and Software Engineering Simple Empirical Software Effort Estimation Models Presenter: Brad Clark Co-Authors: Wilson Rosa, Barry Boehm, Ray Madachy

More information

Assessing Accuracy of Formal Estimation Models and Development of an Effort Estimation Model for Industry Use

Assessing Accuracy of Formal Estimation Models and Development of an Effort Estimation Model for Industry Use Assessing Accuracy of Formal Estimation Models and Development of an Effort Estimation Model for Industry Use Paula S. Esplanada Department of Computer Science,University of the Philippines Cebu College

More information

International Journal of Advanced Research in Computer Science and Software Engineering

International Journal of Advanced Research in Computer Science and Software Engineering Volume 2, Issue 8, August 2012 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Improvement in

More information

Note 6. Software Metrics

Note 6. Software Metrics Computer Science and Software Engineering University of Wisconsin - Platteville Note 6. Software Metrics Yan Shi Lecture Notes for SE 3730 / CS 5730 Part of the slides are adopted from Pearson s slides

More information

Chapter 5 Estimate Influences

Chapter 5 Estimate Influences Dilbert Scott Adams Dilbert Scott Adams Chapter 5 Estimate Influences How much is 68 + 73? ENGINEER: It s 141. Short and sweet. MATHEMATICIAN: 68 + 73 = 73 + 68 by the commutative law of addition. True,

More information

Experiment No 12. Practical Significance. Relevant Program Outcomes. Relevant Course Outcomes. Practical Learning Outcomes.

Experiment No 12. Practical Significance. Relevant Program Outcomes. Relevant Course Outcomes. Practical Learning Outcomes. Experiment No 12 Estimate cost of the project using COCOMO (Constructive Cost Model) / COCOMO II approach for the assigned project. I Practical Significance COCOMO (Constructive Cost Model) is a regression

More information

Stephen M. Eells State Auditor. Department of the Treasury Division of Revenue and Enterprise Services Information Technology Systems

Stephen M. Eells State Auditor. Department of the Treasury Division of Revenue and Enterprise Services Information Technology Systems Department of the Treasury Division of Revenue and Enterprise Services Information Technology Systems February 6, 2017 to June 20, 2018 Stephen M. Eells State Auditor Table of Contents Scope... 1 Objective...

More information

Software Project Management Plan

Software Project Management Plan Software Project Management Plan author(s): Nick De Cooman Abstract: This document details the primary management details of the Salesmen project. This project is created by group 2 of the course Software

More information

mywbut.com Software Project Planning

mywbut.com Software Project Planning Software Project Planning 1 Project Planning and Project Estimation Techniques 2 Specific Instructional Objectives At the end of this lesson the student would be able to: Identify the job responsibilities

More information

Unit-II Measures, Metrics and Indicators

Unit-II Measures, Metrics and Indicators Page no: 1 Unit-II Measures, Metrics and Indicators Measure: The Quantitative indication of the extent, amount, dimension, or size of some attribute of a product or process. A single data point. Metrics:

More information

Project, People, Processes and Products

Project, People, Processes and Products Project, People, Processes and Products Project management skills schedule, monitoring, risk management, People management skills delegation, mentoring, staffing, promoting, evaluating, training, Process

More information

Software Estimation Experiences at Xerox

Software Estimation Experiences at Xerox 15th International Forum on COCOMO and Software Cost Modeling Software Estimation Experiences at Xerox Dr. Peter Hantos Office Systems Group, Xerox 1 Theme Is making bad estimates a crime? No, but it is

More information

Resource Model Studies

Resource Model Studies Resource Model Studies MODELING AND MEASURING RESOURCES Model Validation Study Walston and Felix build a model of resource estimation for the set of projects at the IBM Federal Systems Division. They did

More information

Project Plan. KSU Student Portal. Version 1.0. Submitted in partial fulfillment of the requirements of the degree of MSE

Project Plan. KSU Student Portal. Version 1.0. Submitted in partial fulfillment of the requirements of the degree of MSE Project Plan KSU Student Portal Version 1.0 Submitted in partial fulfillment of the requirements of the degree of MSE Javier Ramos Rodríguez CIS 895 MSE Project Kansas State University 1 Table of contents

More information

FUNCTION POINT ANALYSIS AND WORKFLOW PROJECTS

FUNCTION POINT ANALYSIS AND WORKFLOW PROJECTS FUNCTION POINT ANALYSIS AND WORKFLOW PROJECTS Jana Sedláčková Doctoral Degree Programme (4), FIT BUT E-mail: xsedla23@stud.fit.vutbr.cz Supervised by: Jitka Kreslíková E-mail: kreslika@fit.vutbr.cz ABSTRACT

More information

NYS Forum Project Management Work Group Presents

NYS Forum Project Management Work Group Presents NYS Forum Project Management Work Group Presents PROJECT ESTIMATING BEST PRACTICES December 7, 2015 Agenda: Welcome & Introductions Presentations Questions and Answers 2 Presenters: Jonathan Blake, PMP

More information

Webinar: Agile Estimation Using Functional Metrics Revisited

Webinar: Agile Estimation Using Functional Metrics Revisited Your logo here Webinar: Agile Estimation Using Functional Metrics Revisited September 23, 2010 11:00 AM 12:30 PM 1 ITMPI005 Tom Cagley David Consulting Group Vice President & Director of Software Process

More information

ETSF01: Software Engineering Process Economy and Quality. Chapter Five. Software effort estimation. Software Project Management

ETSF01: Software Engineering Process Economy and Quality. Chapter Five. Software effort estimation. Software Project Management Software Project Management ETSF01: Software Engineering Process Economy and Quality Dietmar Pfahl Lund University Chapter Five Software effort estimation What makes a successful project? Cost/Schedule

More information