Which of the following is not an advantage of using a PERT diagram over a Gantt chart?

A) easy identification of the order of precedence
B) easy determination of slack time
C) easy to show activities that occur at any given point in time
D) easy identification of the critical path


C) easy to show activities that occur at any given point in time

Computer Science & Information Technology

You might also like to view...

Given the array: int hours[8]; which for loop will cycle through each value correctly and assign the values: 1, 2, 3, 4, 5, 6, 7, 8 ?

```A. for(int i=0; i<8; ++i); { hours[i] = i; } B. for(int i=0; i<8; ++i){ hours[i+1] = i; } C. for(int i=0; i<8; ++i){ hours[i] = i + 1; } D. for(int i=0; i<7; ++i){ hours[i] = i + 1; }```

Computer Science & Information Technology

A ______ error may be detected during execution of a program.

a. debugging b. runtime c. syntax d. void e. all of the above

Computer Science & Information Technology

Landscape and Portrait are examples of page ________

A) alignment B) orientation C) arrangement D) positioning

Computer Science & Information Technology

After installation, MySQL must be ____.

A. ported B. linked C. encrypted D. configured

Computer Science & Information Technology