The first step in project planning is to

A. determine the budget. 
B. establish the objectives and scope
C. select a team organizational model
D. determine the project constraints.


Answer: B

Computer Science & Information Technology

You might also like to view...

What will be the output of the following program when the button is clicked on?

``` Private Sub btnDisplay_Click(...) Handles btnDisplay.Click Dim number As Double = 3 DoubleAndSquare(number) txtBox.Text = CStr(number) End Sub Sub DoubleAndSquare(ByRef myVar As Double) myVar = myVar + myVar myVar = myVar * myVar End Sub ``` (A) block scope (B) procedure scope (C) class scope (D) None of the above

Computer Science & Information Technology

Exception handling helps you create ________ programs.

a. high-performance b. logic-error-free c. fault-tolerant d. compilation-error-free

Computer Science & Information Technology

We wish to write the following code segment using the ternary operator: if ( a == b ) c = 5; else c = 0; The resulting line of code would look like this:

A. c = ( a == b ) : 5 ? 0; B. c = ( a == b )? 5 : 0; C. c = ( a == b )? 0 : 5; D. ( a == b )? c = 5 : 0;

Computer Science & Information Technology

Word 2010's mail ________ feature joins a main document such as a form letter with a data source such as a mailing list

Fill in the blank(s) with correct word

Computer Science & Information Technology