Head1 Head2

Dotnet Framework

Interoperability

Threading

Remoting

Webservices

Caching Concepts

OOPS

ASP.NET

NET Architecture

ADO.NET

SQL SERVER

UML

Project Management

Project Management

(B) What is project management?
Applying knowledge,skills,tools,techniques in project and deliver project deliverables is a short definition of project management.Its’s basically managing project time , cost and scope.

(A) Is spending in IT project’s constant through out the project?
Note:- It’s a tricky question , to know how much depth you have regarding costing of projects.
Normally in initial stage of project’s (requirement and design phase) the cost is very less (As you need maximum is business analyst and architecture), but as the project proceeds cost factor starts increasing.The cost is maximum in coding phase (this is where you require programmers , project leads and project manager).Later when the project is in testing and acceptance phase cost is less as we will need only one or two programmers for removing bugs , than the whole team.

(B) Who is a stakeholder ?
A stakeholder is anyone who has something to gain or lose as a result of the completion or failure of this project or phase
Note:- It’s not only the end customer the stakeholder. Project managers, Project Lead, even programmers, testing department etc. are stake holders of project. So during project management interview whenever you refer stakeholder’s be clear about the terminology.

(B) Can you explain project life cycle ?
Twist :- How many phases are there in software project ?

There are five stages of any project initiating, planning, executing, controlling, and closeout.These are very general phases and change according to domain.Example when writing a book i will have following mapping’s initiating(contacting publishers, getting copy right etc.), planning(Table of contents of book ,Number of chapters , tool to use,chapter wise deadlines etc), executing(Actually writing the book), controlling(proof reading , language checks , page alignments etc), and closeout(Finally printing and on the shelf for sale). So this classification is at very broader level , for software development the above figure shows the mapping.

During Software project management interview expected answer is requirement phase, design phase ,coding phase , testing phase and project closure.But you can just impress the answer by giving a general answer and then showing the mapping.




(B) Are risk constant through out the project ?
* Never say that risk is high through out the project.
Risk is high at the start of project’s , but by proper POC (Proof of concept) risk is brought in control.Good project manager’s always have proper risk mitigation plan at the start of project.As the project continues one by one risk is eliminated thus bringing down the risk.


(A)Can you explain different software development life cycles ?
Note:- This questions is asked to test that as a project manager do you have a know how of all the project life cycles.In PMP (Project management plan) you have to specify saying which software development model you will follow. Definitely depending on client and project scenarios it’s the project manager’s responsibility to choose a development cycle.

SDLC (System Development Life Cycle) is overall process of developing information systems through multistep process systems from investigation of initial requirements through analysis, design, implementation and maintenance. The days are gone when one COBOL programmer used to analyze, test and implement software systems. Systems have become complex, huge team members are involved, architects, analyst, programmers, testers, users etc. To manage this number of SDLC models have been created.

Following are popular models which are listed:-
√ Waterfall Model.
√ Spiral Model.
√ Build and Fix model.
√ Rapid prototyping Model.
√ Incremental Model.
This section we will go in to fair depth of different SDLC models.

Water Fall Model
This is the oldest model. It has sequence of stages; output of one stage becomes input of other.
Following are stages in Waterfall model:-
√ System Requirement: - This is initial stage of the project where end user
requirements are gathered and documented.
√ System Design: - In this stage detail requirements, screen layout, business rules, process diagram, pseudo code and other documentations are prepared. This is first step in technical phase.
√ Implementation: - Depending on the design document actual code is written here.
√ Integration and Testing: - All pieces are brought together and tested. Bugs are removed in this phase.
√ Acceptance, Installation and Deployment: - This is final stage where software is put in production and runs actual business.
√ Maintenance: - This is least glamorous phase which runs forever. Code Changes, correction, addition etc are done in this phase.
Waterfall is suited for low risk in areas of User Interface and performance requirements, but high risk in budget and schedule predictability and control. Waterfall assumes that all requirements can be specified in advance. But unfortunately requirement grows and changes through various stages, so it needs feedback from one stage to other.

Spiral Model
Spiral Model removes the drawback of waterfall model, by providing emphasis to go back and reiterate earlier stages a number of times as project progresses. On broader level it’s a series of short waterfall cycles, each producing an early prototype representing a part of entire project. It also helps demonstrate a Proof of Concept at early software life cycle.

Build and Fix Model
This is the most way free-lancers work Write some code and keep modifying it until the customer is happy. This approach can be quite dangerous and risky.

Rapid Prototyping Model
This model is also called as Rapid Application Development. The initial emphasis is on creating prototype that looks and acts like the desired product. Prototype can be created by using tools which is different from those used for final product. Once the prototype is approved, its discarded and real software development is started from scratch. The problem with this model is that sometimes the prototype moves ahead to become the final live product which can be bad from design point of view. It’s a effective model but can have higher costing than other models as you require programmers during the initial phase of the software cycle.

Incremental Model
In this model we divide products in to builds, where section of product are created and tested separately. Here errors are found in requirement phase itself, user feedback is taken for each stage and code is tested after it’s written.

(B) What is triple constraint triangle in project management ?




Project Management triangle is depicted as Cost,Schedule and scope. These three aspect form the sides of triangle and the customer is the center point.As customer is always concerned about Cost,Scope and Schedule, so in order to get customer satisfaction project manager should deliver all scope in propose schedule and cost.

If we want to disturb any one of the legs then the other two legs get affected. Example If customer increases the scope then other two sides of the triangle also get affected a lot.

(B)What is a project baselines ?
It define a logical closure of any deliverable or cycle.Example you have completed the requirement phase with sign off from the client on the requirement document. So you put a baseline and say that further any changes to this document is a change request. Versioning of source code is one type of baseline.

(B)What is effort variance?
Effort Variance = (Actual effort – Estimated Effort) / Estimated Effort.

(B)How is normally a project management plan document organized ?
PMP document forms the bible of a project.It has normally these sections :-
√ Project summary
√ Project organization hierarchy
√ WBS / Activity list to be performed with schedule.
√ Work product identification (In short who will do what)
√ Project schedule( GANNT chart or PERT chart).
√ Estimated Cost and completion.
√ Project requirements.
√ Risk identification.
√ Configuration management section.
√ Quality section.
√ Action Item status.

(I)How do you estimate a project?
There many techniques available for estimating a project:-
√ Function points
√ Use Case points
√ WBS etc etc
.
(B)What is CAR (Causal Analysis and Resolution)?
The basic purpose of CAR is to analyze all defects, problems and good practices/positive triggers in projects, perform a root cause analysis of the same, identify respective corrective and preventive actions and track these to closure. The advantage of CAR is that root causes are scientifically identified and their corrective and preventive actions are carried out. CAR needs to be performed at project initiation, all phase and project ends and on a monthly basis. Fishbone diagram is one of the ways you can do CAR.

(B) What is DAR (Decision Analysis and Resolution) ?
Decision Analysis and Resolution is to analyze possible decisions using a formal evaluation process that identifies alternatives against established criteria.

Example in a project you are said to use third party tools so you will not depend on only one tool but evaluate three to four more tools so that in case of problems you have alternatives.This is called as DAR

(B) What is a fish bone diagram ?
Twist:- What is Ishikawa diagram ?
Dr. Kaoru Ishikawa, invented the fishbone diagram. Therefore, can be also referred as Ishikawa diagram.

Fishbone diagram is a analysis diagram which provides a systematic way of looking at effects and the causes that create or contribute to those effects.Because of the function of the fishbone diagram, it may be referred to as a cause-and-effect diagram. The design of the diagram looks much like the skeleton of a fish. Therefore, it is often referred to as the fishbone diagram.

Fishbone diagram helps in categorizing potential causes of problems or issues in an orderly way and in identifying root causes. Below is a sample fish bone diagram which shows why a project dead line was not met.The middle arrow is the main problem “Deadline not met”.Then we start analyzing other problems which has led to this problem.Example There is client problem -- as he is always changing the requirement -- this is caused because the company did not sign the SRS --- and this happened as proper project management procedures where not at place. So to solve this problem we either appoint a project manager or give training on project management to senior team members.

(B) What is pareto principle ?
Twist :- What is 80/20 principle ?
Pareto principle also paraphrased as 80/20 principle is simple effective problem tackling way in management.It says that 20% of your problem lead to other 80 % of problems. So rather than concentrating on the 80% of problem if you concentrate on 20% of problems you can save lot of trouble.So in pareto you analyze the problems and only concentrate on 20% of your vital problems.In projects the first 10% and the last 10% of project form the vital part of project.

(B)How do you handle change request?
Normally change request are handled by preparing a Impact analysis document and then doing re-estimation. Example you have a ongoing project , which has a customer table. Now customer wants that customer to also have addresses assigned to it. So you normally raise a change request and then do a impact analysis of the same. Depending on the impact you estimate and let know the client about the financial aspect of the project. Once client sign off or the upper management agrees to the change request you move ahead with implementation.

(I)What is internal change request?
Internal change request are not normally billable change request , it has no financial gains from the client. Example your architecture division of your company has said in mid of the project that the architecture has to be modified. Definitely this has nothing to with the client , but you make changes to it this is called as Internal change request.




(B)What is difference between SITP and UTP in testing ?
UTP (Unit Test Plan) are done at smallest unit level or in stand alone mode. Example you have Customer and invoicing module. So you will do test on Customer and Invoice module independently. But later when we want test both customer and invoice in one set we integrate them and test it. So that’s is SITP (System Integration Test Plan) UTP can be done using NUNIT. Unit testing is done normally by developers and System testing is done normally by testing department in integration mode.

(B)What are the software you have used for project management?
Many companies have there own software defined. There are many project management software available at this moment in market but this can vary from company to company, worst it can very from project to project. But Microsoft project is the most used software at this moment.So just brush your skills on Microsoft project , its used heavily across industry.

(I)What are the metrics followed in project management?
Twist: - What metrics will you look at in order to see the project is moving successfully?
Most metric sets deal with a variation of these attributes and are chosen to help project managers gain insight into their product (size, software quality, rework), process (rework, software quality) and project (effort, schedule).

But below is a broader classification :-
Project Management Metrics
milestone metrics
√ number of milestones
√ number of proved requirements per milestone
√ controlling level metrics risk metrics
√ probability of resources availability
√ probability of the requirements validity
√ risk indicators (long schedules, inadequate cost estimating, excessive paperwork, error-prone modules, canceled projects, excessive schedule pressure, low quality, cost overruns, creeping user requirements, excessive time to market, unused or unusable software, unanticipated acceptance criteria, hidden errors)
√ application risk metrics workflow metrics
√ walkthrough metrics
√ traceability metrics
√ variance metrics

controlling metrics
√ size of control elements
√ structure of control elements
√ documentation level
√ tool application level

management database metrics
√ data quality metrics
√ management data complexity
√ data handling level (performance metrics)
√ visualization level
√ safety and security metrics

Quality Management Metrics

customer satisfaction metrics
√ characteristics size metrics
√ characteristics structure metrics
√ empirical evaluation metrics
√ data presentation metrics

review metrics
√ number of reviews in the process
√ review level metrics
√ review dependence metrics
√ review structure metrics
√ review resources metrics

productivity metrics
√ actual vs. Planned metrics
√ performance metrics
√ productivity vs. Quality metrics

efficiency metrics
√ time behavior metrics
√ resources behavior metrics
√ actual vs. Planned metrics

quality assurance metrics
√ quality evaluation metrics
√ error prevention metrics
√ measurement level
√ data analysis metrics

Configuration Management Metrics
change control metrics
√ size of change
√ dependencies of changes
√ change interval metrics
√ revisions metrics

version control metrics
√ number of versions
√ number of versions per customer
√ version differences metrics
√ releases metrics (version architecture)
√ data handling level

Note:- Following are some questions who do not have a specific answer and vary from person to person or are out of the scope of book.This book will list down the questions just go through them.

(B)You have people in your team who do not meet there deadlines or do not perform what are the actions you will take ?
Twist :- Two of your resources have conflict’s between them how would you sort it out ?
In such kind of question they want to see your delegation skills. The best answer to this question is a job of a project manager is managing projects and not people’s problems, so i will delegate this work to HR or upper authority.

(I) How do you do code reviews ?
The way code reviews are done change from person to person and also company to company. But the normal was is when a project is started project people define there architecture, coding standards etc etc in there design document.So before starting the code review you will have go through the standards defined in the project.

Top

  Home   |   Submit a Question   |   Share your Interview Experience   |   Contact Us  
Footer
 
Copyright © Gurmeet Singh Khalsa
Website designed by: Freelance Web