Presented by Group 1: Kritik Sharma Pranav Madaan Sourabh Pol Sudipta Modak
Presented by Group 1: Kritik Sharma Pranav Madaan Sourabh Pol Sudipta Modak
Presented by Group 1: Kritik Sharma Pranav Madaan Sourabh Pol Sudipta Modak
PROJECT
MANAGEMENT
ASSIGNMENT
3
Presented By Group 1:
Kritik Sharma
Pranav Madaan
Sourabh Pol
Sudipta Modak
Chapter 3: Software Project Management
1 (b) COCOMO estimation model can be used to estimate which one of the
following:
(i) LOC
(ii) Effort
(iii) Function points
(iv) Defect density
Chapter 3: Software Project Management
1 (c) What is the correct order in which a software project manager
estimates various project parameters while using COCOMO:
(i) Cost, effort, duration, size
(ii) Cost, duration, effort, size
(iii) Size, effort, duration, cost
(iv) Size, cost, effort, duration
1 (d) Which one of the following is NOT a factor for "Lines of code" being
considered as a poor size metric:
(i) It is programming language dependent
(ii) It penalises efficient and compact coding
(iii) It is programmer dependent
(iv) It is dependent on the complexity of the requirements
Chapter 3: Software Project Management
1 (e) Which one of the following project parameters is usually the first to
be estimated by a project manager:
(i) Cost
(ii) Effort
(iii) Size
(iv) Duration
A. Planning
For a project to be successful and completed within a specified time, the software project manager
for a company must plan effectively. This also includes:
● Scope
● Activity Schedules
● Gantt Chart
● Potential Risks
B. Setting Goals
He must set measurable goals that should define the overall project's objective.
For example: Complete the project within six months from the start date in the budget of xxx
amount.
It is concise, crisp, and outlines the objective clearly.
Chapter 3: Software Project Management
C. Time Management
Time estimation for the various activities is of major significance as it helps set the daily
priorities of each team member. A software project manager has to properly time all the
activities for the completion of the project and also prepare for any delays in any of the
activities.
Types of Complexity:
● Invisibility
● Changeability
● Interaction
● Uniqueness
● Exactness of a Solution
● Team Oriented and Intellect Intensive Work
● The Huge Task regarding Estimation
Chapter 3: Software Project Management
Estimation is one of the most critical components of software project management. During project
planning, a project manager must estimate the project's cost, likely completion time, and the
amount of effort required to execute the project based on size estimation. This estimation is a
difficult process, adding to the difficulty of software project management
Chapter 3: Software Project Management
4. List the important shortcomings of LOC for use as a software size metric for carrying out
project estimations.
Gantt chart representation of a project schedule is helpful in planning the utilisation of resources, while
PERT chart is useful for monitoring the timely progress of activities.
The COCOMO-II is the revised version of the original Cocomo (Constructive Cost Model) and is
developed at the University of Southern California. This model calculates the development time
and effort taken as the total of the estimates of all the individual subsystems. In this model, whole
software is divided into different modules. Example of projects based on this model is Spreadsheets
and report generator.
· It provides estimates that represent one standard deviation around the most likely estimate
· In COCOMO II, Number of sub model are 4 and 17 cost drivers are assigned
· Size of software stated in terms of Object points, function points and lines of code
it can be observed that the development time is a sub linear function of the size of the
product, i.e. when the size of the product increases by two times, the time to develop the
product does not double but rises moderately. This can be explained by the fact that for
larger products, a larger number of activities which can be carried out concurrently can
be identified. The parallel activities can be carried out simultaneously by the engineers.
This reduces the time to complete the project. Further, from fig, it can be observed that
the development time is roughly the same for all three categories of products. For
example, a 60 KLOC program can be developed in approximately 18 months, regardless
of whether it is of organic, semi-detached, or embedded type.
Software Sizing
8. What is meant by the ‘size’ of a software project? Why does a project manager
need to estimate the size of the project? How is the size estimated?
Estimation of the size of the software is an essential part of Software Project Management. It helps the
project manager to further predict the effort and time which will be needed to build the project. Various
measures are used in project size estimation. Some of these are:
● Lines of Code
● Number of entities in ER diagram
● Total number of processes in detailed data flow diagram
● Function points
Lines of Code (LOC)
As the name suggests, LOC count the total number of lines of source code in a project.
The size is estimated by comparing it with the existing systems of the same kind. The
experts use it to predict the required size of various components of software and then add
them to get the total size.
Advantage Disadvantage
● Universally accepted ● Different programming
and is used in many languages contain a
models like different number of
COCOMO. lines.
● Estimation is closer to ● No proper industry
the developer’s standard exists for this
perspective. technique.
Number of Entities in ER Diagram
ER model provides a static view of the project. It describes the entities and their
relationships. The number of entities in ER model can be used to measure the estimation
of the size of the project. The number of entities depends on the size of the project. This
is because more entities needed more classes/structures thus leading to more coding.
Advantage Disadvantage
● Size estimation can be ● No fixed standards
done during the initial exist. Some entities
stages of planning. contribute more project
● The number of entities size than others.
is independent of the ● Just like FPA, it is less
programming used in the cost
technologies used. estimation model.
Hence, it must be
converted to LOC.
Total number of processes in detailed
data flow diagram
Data Flow Diagram(DFD) represents the functional view of software. The model depicts the main
processes/functions involved in software and the flow of data between them. Utilization of the number
of functions in DFD to predict software size. Already existing processes of similar type are studied and
used to estimate the size of the process. Sum of the estimated size of each process gives the final
estimated size.
Advantage Disadvantage
● It is independent of the ● Studying similar kinds
programming of processes to
language. estimate size takes
● Each major process can additional time and
be decomposed into effort.
smaller processes. This ● All software projects
will increase the are not required for the
accuracy of estimation construction of DFD..
Function Point Analysis
● Count the number of functions of each proposed type.
● Compute the Unadjusted Function Points(UFP).
● Find Total Degree of Influence(TDI).
● Compute Value Adjustment Factor(VAF).
● Find the Function Point Count(FPC).
Advantage Disadvantage
● It can be easily used in ● It is not good for real-
the early stages of time systems and
project planning. embedded systems.
● It is independent of the ● Many cost estimation
programming models like COCOMO
language. uses LOC and hence
FPC must be converted
to LOC.
Product Visibility
7. What do you understand by product visibility in the context of software development?
Why is it important to improve product visibility during software development?
How can product visibility be improved?