Skip to main content

Project Management Basics

Project Management Concepts

Software Project Management Activities

Software Project Management Activities span the entire life of the software product, and hence is the primary concern of software engineering. It begins with the initial problem identification and finally ends when the software is retired.

Steps involved in Project Management

  • the objective and scope of work to be done
  • the risks to be involved
  • the resources to be required
  • the effort or cost to be expended and 
  • the schedule to be followed 

The objectives identify the overall goals of the project, and the scope identifies the primary functions that the software is to accomplish and attempts to specify the bounds to each of the software functions.

Risks

Risk analysis is critical to Software Project Management. Risk analysis is actually a series of risk management steps that enable us to tackle risk:
  1. Risk identification
  2. Risk Assessment
  3. Risk Prioritization
  4. Risk Management strategies
  5. Risk Resolution
  6. Risk Monitoring

Resources

The resources can be categorized as :
  • People
  • hardware and software

Estimation

Software project planning requires the estimation of human effort usually in person months,chronological project duration in calendar month and cost in rupees /dollars must be derived.
Estimation tools have the following in common:
  • Scope of the project must be established in advance.
  • Software metrics i.e past measurements are used as basis for new estimates.
  • Software project is broken into components or tasks which are then estimated individually.

Scheduling Tracking and Control

A set of project tasks is identified  and inter dependencies among them is established.The effort required for each task is estimated.People and other resources  are assigned.

Software Project Metrics

This can be categorized as:
  1. Productivity Metrics- focus on the output of the software engineering process
  2. Quality Metrics- provide indication on how closely software conforms to implicit and explicit customer requirement
  3. Technical Metrics- focus on the inherent attributes of the software ,such as logical complexity degree of modularity etc
  4. Size oriented metrics- provide indication on direct measures of software engineering output and quality
  5. Function oriented metrics-provide indication on indirect measures of software 

Comments

Popular posts from this blog

Unified Modeling Language- (UML)

Brief Background UML is a language for specifying,visualizing ,documenting and constructing the artifacts of software systems,as well as for business modeling and other non-software systems. UML has been developed by Grady  Booch, James Rumbaugh and Ivar Jacobson. Goals of UML are : To model systems using Object oriented concepts. To establish an explicit coupling to conceptual as well as executable artifacts To address the issues of scale inherent in complex , mission critical systems. To create a modeling language that can be used by humans as well as machines.  Understanding the thirteen diagrams of UML 2.x is an important part of understanding OO development. Although there is  far more to modeling than just the UML  the reality is the UML defines the standard modeling artifacts when it comes to object technology. There are three classifications of UML diagrams: Behavior diagrams . A type of diagram that depicts behavioral features of a ...

Javascript to validate Email Expression

Using  regular expressions  is probably the best way. Here's an example ( live demo ): function validateEmail ( email ) { var re = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/ i ; return re . test ( email ); } But keep in mind that one should not rely only upon JavaScript validation. JavaScript can easily be disabled. This should be validated on the server side as well.

Achieving Web Presence Goals

For creating a web site that is effective,the following objectives should be considered: To attract visitors to the Web site. To make the site interesting so that the visitor stay and explore. To persuade the visitors to follow the site's links to obtain information. To create the desired image of the organisation in the visitors mind. To reinforce positive images that the visitor may already have about the organisation. Why do Visitors arrive at a  Web site: To obtain general information about the company or organisation. Learning about the company's products or services. Buying the products and services offered by the company. Finding  out the services conditions and warranties applicable for the products they have purchased. Obtaining financial information helpful in making investment or credit granting decision. Identifying the people who manage the company or organisation.   Business should try to meet the following goals while constructing ...