To change a task from effort-driven to fixed duration, clear the ____ check box on the Advanced tab of the Task Information dialog box or in the Work Task form.
A. Duration
B. Effort driven
C. Dynamic
D. Transition
Answer: B
You might also like to view...
Answer the following statements true (T) or false (F)
1. Pseudocode must be written in an editor capable of understanding it and the language to which it pertains. 2. With sequential execution, statements execute one after the other in the order in which they appear in the program. 3. Control statements cannot be placed inside other control statements. 4. The If…Then statement is a single-repetition statement. 5. The If…Then selection statement performs an action if a condition is true or skips the action if the condition is false
What is the default value for the GridBagConstraint fill?
a. NONE. b. BOTH. c. CENTER. d. HORIZONTAL.
What does the .. entry in a directory point to? What does this entry point to in the root (/) directory?
What will be an ideal response?
Find the error(s) in the following code. The following method should create a new Shape object with intNumberSides sides. Assume the Shape class
private void ManipulateShape( int intNumberSides ) { Shape objShape = new Shape( 3 ); Shape.m_intSides = intNumberSides; } // end method ManipulateShape