📜  门| GATE-CS-2015(Set 3)|第65章

📅  最后修改于: 2021-06-28 17:35:27             🧑  作者: Mango

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

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。还可以得出结论,在影响开发工作的14个价值调整因素中,有4个因素不适用,其他4个因素中的每个因素都具有值3,其余因素中的每个因素都具有值4。函数点的计算值指标是____________
(A) 612.06
(B) 212.05
(C) 305.09
() 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/Seminars/abbas.pdf

这个问题的测验