大门|大门-CS-2015(第三组)|问题65

考虑一个具有以下信息域特性的软件项目,用于计算函数点度量。

null
  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。功能点度量的计算值为____________ (A) 612.06 (B) 212.05 (C) 305.09 (D) 806.9 答复: (A) 说明: 功能点度量为衡量软件应用程序的各种功能提供了一种标准化方法

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/研讨会/阿巴斯。pdf

这个问题的小测验

© 版权声明
THE END
喜欢就支持一下吧
点赞13 分享