Project Management Exam Prep Notes
Project Management Exam Prep Notes
Project Management
Exam Preparation Notes
Clear, easy-to-understand study guide from the uploaded slides
Source slide decks reviewed: 004 (1).pptx - Framework for Project Management; 004- [Link] - Project Integration
Management; [Link] - Project Stakeholder Management; 006- [Link] - Project Time Management.
Prepared from uploaded PM slides | Focus topics first, remaining topics separate
Project Management Exam Prep Notes
Table of Contents
Section Topic
1 Triple Constraints
11 Stakeholder Management
Prepared from uploaded PM slides | Focus topics first, remaining topics separate
Project Management Exam Prep Notes
1. Triple Constraints
The triple constraint is the idea that every project is mainly controlled by three connected limits: scope, time, and cost. If
one changes, at least one of the others is usually affected.
Scope What work must be done and what Adding a mobile app feature increases scope.
deliverables must be produced.
Time The schedule or deadline for completing the The client wants the project finished two
work. weeks earlier.
Cost The budget, resources, and money available Hiring more developers increases cost.
for the work.
Quality Often treated as the center of the triangle Rushing work may reduce testing quality.
because scope, time, and cost decisions affect
quality.
More features are added without changing deadline. More cost, more resources, overtime, or lower quality.
Budget is reduced. Scope may be reduced, schedule may extend, or quality may drop.
Quality requirement increases. More testing, more time, more cost, or narrower scope.
Planning Decide how the project will be done. Project management plan, scope/WBS,
Prepared from uploaded PM slides | Focus topics first, remaining topics separate
Project Management Exam Prep Notes
schedule, budget, communication plans.
Monitoring and Controlling Track performance and manage changes. Progress reports, change control,
schedule/control updates, corrective actions.
Closing Finish the project or phase properly. Final acceptance, handover, lessons learned,
archived documents.
Initiating College approves the need for a new website and signs the project
charter.
Monitoring and Controlling Project manager checks progress, handles change requests, and
compares actual work with the plan.
Prepared from uploaded PM slides | Focus topics first, remaining topics separate
Project Management Exam Prep Notes
Term Meaning
Project scope The work that must be done to deliver the product/service/result.
Work package The lowest level of the WBS; it can be estimated, assigned, scheduled,
and controlled.
Prepared from uploaded PM slides | Focus topics first, remaining topics separate
Project Management Exam Prep Notes
1.5.1 Unit testing
1.5.2 Integration testing
1.5.3 User acceptance testing
1.6 Deployment and Training
1.6.1 Server deployment
1.6.2 User training
1.6.3 Final handover
Activity list Lists specific tasks needed to complete work Design login screen; code login API; test login.
packages.
Schedule Adds sequence, dates, durations, resources, Code login API: 3 days, after database design.
and dependencies.
Plan schedule management Decide how the schedule will be planned, Schedule management plan.
executed, and controlled.
Define activities Identify specific tasks that must be Activity list and activity attributes.
performed.
Estimate activity resources Estimate people, equipment, and materials Resource requirements and resource
needed. breakdown structure.
Estimate activity durations Estimate work periods needed for each Duration estimates; three-point estimates if
activity. uncertainty is high.
Develop schedule Analyze sequences, resources, and durations Schedule baseline, Gantt chart, critical path.
to create the project schedule.
Control schedule Monitor status and manage schedule Progress reports, variance analysis, schedule
Prepared from uploaded PM slides | Focus topics first, remaining topics separate
Project Management Exam Prep Notes
changes. updates.
Milestones
A milestone is a significant event with normally zero duration. It marks an important point such as customer sign-off,
completion of design, or product delivery.
Dependencies
Dependency Type Meaning Example
Mandatory / hard logic Inherent in the nature of the work. Foundation before walls in construction.
Discretionary / soft logic Chosen by the project team; should be used Design homepage before design contact page.
carefully.
External Relationship with activities outside the Government approval before construction
project. starts.
ADM / AOA Activities are arrows; nodes are start/end Can only show finish-to-start dependencies.
points.
PDM / AON Activities are boxes; arrows show More popular; used by project management
relationships. software; supports more dependency types.
Duration Elapsed time from activity start to finish, including actual work and
Prepared from uploaded PM slides | Focus topics first, remaining topics separate
Project Management Exam Prep Notes
waiting time.
Three-point estimate Uses optimistic, most likely, and pessimistic estimates. Used in PERT
and uncertainty analysis.
Gantt Chart
A Gantt chart shows activities with start and finish dates in calendar format.
Common symbols: diamond for milestone, thick bar for summary task, lighter bar for task duration, arrows for
dependencies.
Tracking Gantt charts compare planned and actual progress.
Shorten critical activities Reduce duration of tasks on the critical path. May need more resources or scope changes.
Steps
1. Identify important selection criteria.
2. Assign a weight to each criterion. Total weight must equal 100% or 1.00.
3. Assign scores for each project, usually out of 100.
4. Multiply each score by its weight.
5. Add the weighted values to get the total weighted score.
6. Choose the project with the highest total weighted score.
Weighted score: Total = Sum(Weight x Score)
If weights are percentages, convert them to decimals: 25% = 0.25.
Slide-style Example
The slide example for Project 1 uses this calculation:
25% x 90 + 15% x 70 + 15% x 50 + 10% x 25 + 5% x 20 + 20% x 50 + 10% x 20 = 56
This means Project 1 has a total weighted score of 56. If another project scores higher than 56, that project is preferred
according to this model.
Conclusion
Project A = 74.0 and Project B = 73.5. Project A is selected because it has the higher weighted score.
Prepared from uploaded PM slides | Focus topics first, remaining topics separate
Project Management Exam Prep Notes
Even if Project B has better financial return and time score, Project A wins because the overall weighted total is higher.
Important Terms
Term Meaning
LS - Late Start Latest time an activity can start without delaying the project.
LF - Late Finish Latest time an activity can finish without delaying the project.
Float / Slack Time an activity can be delayed without delaying the project. Total
float = LS - ES = LF - EF.
Critical path Longest path through the network; normally activities with zero total
float.
A 3 days None
B 2 days None
C 4 days A
D 3 days A, B
Prepared from uploaded PM slides | Focus topics first, remaining topics separate
Project Management Exam Prep Notes
E 2 days C
F 5 days D, E
Network structure:
Start -> A(3) -> C(4) -> E(2) -> F(5) -> Finish
Start -> B(2) --------> D(3) ----^
A(3) --------^
A 3 0 3 Starts at 0. EF = 0 + 3.
B 2 0 2 Starts at 0. EF = 0 + 2.
C 4 3 7 After A, so ES = EF of A = 3.
D 3 3 6 After A and B, so ES =
max(3,2) = 3.
E 2 7 9 After C, so ES = 7.
F 5 9 14 After D and E, so ES =
max(6,9) = 9.
Project duration
The project duration is 14 days because the final activity F finishes at day 14.
A-C-E-F 3 + 4 + 2 + 5 = 14 days
A-D-F 3 + 3 + 5 = 11 days
B-D-F 2 + 3 + 5 = 10 days
Critical path
A - C - E - F is the critical path because it is the longest path: 14 days.
Prepared from uploaded PM slides | Focus topics first, remaining topics separate
Project Management Exam Prep Notes
14 - 5.
E 9 7 0 Successor F has LS 9, so LF
= 9.
C 7 3 0 Successor E has LS 7.
A 3 0 3 0 3 0 Yes
B 2 0 2 4 6 4 No
C 4 3 7 3 7 0 Yes
D 3 3 6 6 9 3 No
E 2 7 9 7 9 0 Yes
F 5 9 14 9 14 0 Yes
Prepared from uploaded PM slides | Focus topics first, remaining topics separate
Project Management Exam Prep Notes
Project Stakeholders
Stakeholders are people or groups involved in or affected by the project. Examples include the sponsor, project team,
support staff, customers, users, suppliers, contractors, government, and even opponents.
Integration Coordinates all other knowledge areas and keeps the project together.
Project Success
The project meets scope, time, and cost goals.
The project satisfies the customer or sponsor.
The project result meets its main objective, such as saving money, earning profit, or providing value.
Prepared from uploaded PM slides | Focus topics first, remaining topics separate
Project Management Exam Prep Notes
Develop project charter Creates the document that formally authorizes the project.
Develop project management plan Combines all planning documents into one coordinated plan.
Direct and manage project work Carries out the work described in the project management plan.
Monitor and control project work Tracks performance and checks whether objectives are being met.
Perform integrated change control Identifies, evaluates, approves/rejects, and manages changes.
Close project or phase Finalizes all activities and formally closes the project or phase.
Project Charter
A project charter formally recognizes the existence of a project and gives direction on objectives and management. Key
stakeholders should sign it to show agreement.
Change control system Formal documented process describing when and how project
documents/work may be changed.
Change control board (CCB) Formal group responsible for approving or rejecting changes.
48-hour policy In urgent cases, team may make a decision and senior management
has 48 hours to reverse it.
Broad organizational needs Choose projects with clear need, available funds, and strong will to
succeed.
Balanced scorecard Convert value drivers such as customer service, innovation, efficiency,
and financial performance into metrics.
Prepared from uploaded PM slides | Focus topics first, remaining topics separate
Project Management Exam Prep Notes
ROI: ROI = (Total discounted benefits - Total discounted costs) / Total discounted costs
Multiply by 100 to express as a percentage.
Payback Analysis
Payback period is the time needed to recover the total investment through net cash inflows.
Payback occurs when cumulative benefits equal costs.
Many organizations prefer projects with shorter payback periods.
Prepared from uploaded PM slides | Focus topics first, remaining topics separate
Project Management Exam Prep Notes
Stakeholder Management Activities
Identify stakeholders.
Analyze stakeholder expectations and impact on the project.
Develop strategies to involve stakeholders in decisions and execution.
Communicate and work with stakeholders to meet needs and reduce resistance.
Stakeholder Register
Used throughout the project.
Lists all stakeholders and stakeholder groups.
Includes interests, involvement, interdependencies, influence on success, interactions, and team responsibility.
Closely related to the communication plan.
Project Sponsor
Person or group responsible for enabling project success.
Usually outside the project team.
Signs off that the project is complete.
Escalates issues beyond the project manager’s control.
Has an important role in the initial charter and project plan.
Engagement Levels
Level Meaning
Prepared from uploaded PM slides | Focus topics first, remaining topics separate
Project Management Exam Prep Notes
Relationship Building
Analyze stakeholders and assess influence.
Understand expectations and define success.
Keep stakeholders involved and informed.
Build respect: be honest, take ownership, be reliable, stand by decisions, and accept accountability for mistakes.
Idea generation Create new product ideas from customers, employees, research,
competitors, or market needs.
Concept development and testing Develop detailed product concept and test it with customers.
Business analysis Estimate costs, sales, profits, risks, and market potential.
Programs
A program is a group of related projects managed together to gain benefits and control that would not be available by
managing each project separately.
Prepared from uploaded PM slides | Focus topics first, remaining topics separate
Project Management Exam Prep Notes
Term Easy Difference
EF EF = ES + Duration.
ES ES = max EF of predecessors.
LS LS = LF - Duration.
LF LF = min LS of successors.
Project management Using knowledge, skills, tools, and techniques to meet project
requirements.
Critical path Longest path through the network diagram and shortest possible
Prepared from uploaded PM slides | Focus topics first, remaining topics separate
Project Management Exam Prep Notes
project duration.
Prepared from uploaded PM slides | Focus topics first, remaining topics separate
Project Management Exam Prep Notes
2. Process Groups: not shown as a full separate slide deck. I included the standard five process groups and mapped them to Integration
Management.
3. Project Scope Management / WBS: WBS is mentioned in the Time slides, but a full scope management chapter was not uploaded. I
included core WBS notes for exam preparation.
4. Cost Management, Quality Management, Human Resource/Resource Management, Communications Management, Risk
Management, and Procurement Management are listed as knowledge areas but are not explained as full chapters in these uploads.
5. Earned Value Management is only mentioned briefly under schedule control/performance management, not explained in detail. If
your exam includes EVM, study PV, EV, AC, CV, SV, CPI, and SPI separately.
6. Agile/Scrum is not present in these uploaded slides. Study it separately if it is in your course outline.
Prepared from uploaded PM slides | Focus topics first, remaining topics separate