retagged by
1,149 views

1 Answer

2 votes
2 votes

Option NONE OF THESE

 BASIC COCOMO MODEL

It is the one type of static model to estimates software development effort quickly and roughly. It mainly deals with the number of lines of code and the level of estimation accuracy is less as we don’t consider the all parameters belongs to the project. The estimated effort and scheduled time for the project are given by the relation:

$Effort (E) = a*(KLOC)^{b}  MM$
$Scheduled Time (D) = c*(E)^{d}  Months(M)$

Where,

  • = Total effort required for the project in Man-Months (MM).
  • = Total time required for project development in Months (M).
  • KLOC = the size of the code for the project in Kilo lines of code.
  • a, b, c, d = The constant parameters for a software project.

Answer:

Related questions

1 votes
1 votes
1 answer
1
admin asked Mar 31, 2020
1,151 views
According to Brooks, if $n$ is the number of programmers in a project team, then the number of communication path is$n(n-1)/2$$n\log n$$n$$n(n+1)/2$
0 votes
0 votes
1 answer
2
admin asked Mar 31, 2020
1,454 views
In object oriented design of software, objects haveattributes and name onlyoperations and name onlyattributes name and operationsmutation and permutation property
0 votes
0 votes
1 answer
3
admin asked Mar 31, 2020
868 views
The extent to which the software can control to operate correctly despite the introduction of invalid input is called asreliabilityrobustnessfault toleranceportability
0 votes
0 votes
1 answer
4
admin asked Mar 31, 2020
1,870 views
On an average, the programmer months is given by $3.6 \times (KLOC)​\large^{1.2​}$. If so, a project requiring one thousand source instructions will require$3.6$ PM.$...