Task dependencies are dependencies between tasks that determine in which order and how they must be executed. This means that one task can have a dependency on another, which means that it cannot start until another task has been completed. Such dependencies are crucial in project management, as they help to establish the schedule and sequence of work.
There are different types of dependencies between tasks:
Finish-to-Start (FS) - task B cannot start until task A is complete (the most common dependency).
Start-to-Start (SS) - task B cannot start until task A has started.
Finish-to-Finish (FF) - task B cannot finish until task A is complete.
Start-to-Finish (SF) - task B cannot finish until task