考虑一个具有以下信息域特征的软件项目,用于计算函数点度量。
Number of external inputs (I) = 30
Number of external output (O) = 60
Number of external inquiries (E) = 23
Number of files (F) = 08
Number of external interfaces (N) = 02
假设 I、O、E、F 和 N 的复杂度加权因子分别为 4、5、4、10 和 7。还给出了影响开发工作量的十四个价值调整因素中,有四个因素不适用,其他四个因素中的每一个都为3,其余的每个因素都为4。函数点的计算值公制是____________
(一) 612.06
(乙) 212.05
(C) 305.09
(四) 806.9答案:(一)
说明:函数点度量提供了一种用于衡量软件应用程序各种功能的标准化方法
The value of function point metric = UPF * VAF
Here,
UPF: Unadjusted Function Point (UFP) count
VAF: Value Adjustment Factor
UPF = 4*30 + 60*5 + 23*4 + 8*10 + 7*2 = 606
VAF = (TDI * 0.01) + 0.65
Here TDI is Total Degree of Influence
TDI = 3*4 + 0*4 + 4*6 = 36
VAF = (TDI * 0.01) + 0.65
= 36*0.01 + 0.65
= 0.36 + 0.65
= 1.01
FP = UPF * VAF
= 1.01 * 606
= 612.06
参考 https://cs.uwaterloo.ca/~apidduck/CS846/Seminars/abbas.pdf
这个问题的测验