• retagged by
10,321 views
3 3 votes

A software project involves execution of 5 tasks T1, T2, T3, T4 and T5 of duration 10, 15, 18, 30 and 40 days, respectively. T2 and T4 can start only after T1 completes. T3 can start after T2 completes. T5 can start only after both T3 and T4 complete. What is the slack time of the task T3 in days?

  1. 0
  2. 3
  3. 18
  4. 30

2 Answers

Best answer
4 4 votes

Slack time can be defined as the amount of time an task can be delayed without causing another task to be delayed or impacting the completion date of your project.

There are two things that are needed to calculate the slack time:

  1. ES – the earliest time when an activity can be started
  2. LS – the latest time when an activity must be started.

The slack time is calculated as:

Slack Time = LS-ES

ES of T3 is after completion of T1 and T2 so

ES=T1+T2=10+15=25

T5: ES =10+15+18=43

T3: LS =43-18=25
Slack time = ES-LS =25-25=0 // For T3

• edited by
3 3 votes
T3 : earliest start time - after T2 and T1 completes , i.e (10+15) = 25

       T5 can start earliest by 43

       so latest start time of T3 (43-18)= 25

      hence, slack time = 25-25=0

ans. 1.
Answer:
Position:
Show:

Related questions

3 3 votes
1 answers 1 answer
6.3k
6.3k views
Ishrat Jahan asked Nov 2, 2014
6,271 views
What is the availability of a software with the following reliability figures?Mean Time Between Failure (MTBF) = 25 daysMean Time To Repair (MTTR) = 6 hours1%24%99%99.009...
4 4 votes
2 answers 2 answers
5.4k
5.4k views
Ishrat Jahan asked Nov 2, 2014
5,418 views
A software was tested using the error seeding strategy in which 20 errors were seeded in the code. When the code was tested using the complete test suite, 16 of the seede...
3 3 votes
2 answers 2 answers
4.3k
4.3k views
Ishrat Jahan asked Nov 2, 2014
4,263 views
Assume that the delivered lines of code L of a software is related to the effort E in person months and duration t in calendar months by the relation L P* (E/B)1/3 * t4/3...
3 3 votes
1 answers 1 answer
5.8k
5.8k views
Ishrat Jahan asked Nov 2, 2014
5,829 views
Consider the following program module:int module1 (int x, int y) { while (x! = y) { if (x y) x = x - y, else y = y - x; } return x; }What is Cyclomatic complexity of the...