retagged by
3,467 views
1 votes
1 votes

In a software project, COCOMO (Constructive Cost Model) is used to estimate

  1. effort and duration based on the size of the software
  2. size and duration based on the effort of the software
  3. effort and cost based on the duration of the software
  4. size, effort and duration based on the cost of the software
retagged by

1 Answer

Best answer
6 votes
6 votes

The basic COCOMO equations take the form

Effort Applied (E) = ab(KLOC)bb person-months ]

Development Time (D) = cb(Effort Applied)db [months]

So A is the correct option.

selected by
Answer:

Related questions

3 votes
3 votes
1 answer
1
Ishrat Jahan asked Nov 2, 2014
5,072 views
What is the availability of a software with the following reliability figures?Mean Time Between Failure (MTBF) = 25 daysMean Time To Repair (MTTR) = 6 hours1%24%99%99.009...
3 votes
3 votes
1 answer
4
Ishrat Jahan asked Nov 2, 2014
3,836 views
Consider the following program module:int module1 (int x, int y) { while (x! = y) { if (x y) x = x - y, else y = y - x; } return x; }What is Cyclomatic complexity of the...