Gantt charts are more useful for scheduling, monitoring, and controlling the actual work than PERT charts.

Answer the following statement true (T) or false (F)


False

Rationale: Although a Gantt chart offers a valuable snapshot view of the project, PERT charts are more useful for scheduling, monitoring, and controlling the actual work. With a PERT chart, a project manager can convert task start and finish times to actual dates by laying out the entire project on a calendar. 

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1. A stack is a first-in-first-out data structure. 2. A queue is first-in-first-out data structure. 3. Most applications that use a stack will store a struct or class object on the stack. 4. Placing data on a stack is called popping the stack. 5. Removing data from a stack is called popping the stack.

Computer Science & Information Technology

Which of the following statements is true?

For the two code segments below: Segment A ``` int q = 5; switch(q) { case 1: System.out.println(1); case 2: System.out.println(2); case 3: System.out.println(3); case 4: System.out.println(4); case 5: System.out.println(5); default: System.out.println("default"); } ``` Segment B ``` q = 4; switch(q) { case 1: System.out.println(1); case 2: System.out.println(2); case 3: System.out.println(3); case 4: System.out.println(4); case 5: System.out.println(5); default: System.out.println("default"); } ``` a. The output for Segment A is: default b. The output for Segment B is: 4 c. The output for Segment B is: 45default d. The output for Segment A is: 5 default

Computer Science & Information Technology

The ________, located at the bottom of the window, offers additional information about the window

Fill in the blank(s) with correct word

Computer Science & Information Technology

The Many Fields tool creates a form that lists all the fields in a datasheet format, but using a style that is similar to the form created by the Form tool.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology