Difficulty: Easy
Correct Answer: All the above.
Explanation:
Introduction / Context:
Forward and backward pass calculations in CPM determine schedule flexibility (float) and the critical path. Understanding the definitions of ES, EF, LS, and LF is essential for correct computations.
Given Data / Assumptions:
Concept / Approach:
Forward pass yields earliest event times and thus ES/EF; backward pass yields latest allowable times without delaying project finish, thus LS/LF. Float metrics derive from these times.
Step-by-Step Solution:
ES of an activity equals the earliest time its start node occurs.EF = ES + duration.LF equals the latest allowable time of its finish node.LS = LF - duration.Zero float means EF = LF and ES = LS on critical activities.
Verification / Alternative check:
Check consistency: EF of predecessors must be less than or equal to ES of successors. Any violation indicates a logic or calculation error.
Why Other Options Are Wrong:
Each statement accurately defines schedule times; hence 'All the above' is correct.
Common Pitfalls:
Mixing event times with activity times; neglecting multiple predecessors by not taking the maximum EF when computing successor ES.
Final Answer:
All the above.
Discussion & Comments