InterviewSolution
Saved Bookmarks
| 1. |
Function Point Computation is given by the formula(a) FP = [count total * 0.65] + 0.01 * sum(Fi)(b) FP = count total * [0.65 + 0.01 * sum(Fi)].(c) FP = count total * [0.65 + 0.01] * sum(Fi)(d) FP = [count total * 0.65 + 0.01] * sum(Fi)This question was posed to me during an interview.The above asked question is from Metrics Analysis in chapter Software Metrics of Software Engineering |
|
Answer» CORRECT OPTION is (B) FP = COUNT total * [0.65 + 0.01 * sum(Fi)]. For explanation I would say: Option b is the correct formula for Function POINT Computation. |
|