Describe the systems development method you plan to use, and explain the pros and cons of using this method.

What will be an ideal response?


Answers will vary but students should describe why the method was chosen, and compare the strengths and weaknesses of other methods.



Computer Science & Information Technology

You might also like to view...

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

1. A parameter variable's scope is the method in which the parameter is declared. 2. You must have a return statement in a value-returning method. 3. Any method that calls a method with a throws clause in its header must either handle the potential exception or have the same throws clause. 4. In the method header the static method modifier means the method is available to code outside the class.

Computer Science & Information Technology

Which of the following is not one of the classification levels for private sector information?

A) Protected B) Secret C) Internal use D) Public

Computer Science & Information Technology

The height of a wave indicates frequency.

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

Computer Science & Information Technology

If you enter 1 0, what is the output of the following code?

``` #include using namespace std; int main() { // Read two intergers cout << "Enter two integers: "; int number1, number2; cin >> number1 >> number2; try { if (number2 == 0) throw number1; cout << number1 << " / " << number2 << " is " << (number1 / number2) << endl; cout << "C" << endl; } catch (int e) { cout << "A" << endl; } cout << "B" << endl; return 0; } ``` a. B b. AB c. A d. C

Computer Science & Information Technology