Function Point (FP) is an element of software development which helps to approximate the cost of development early in the process. It may measures functionality from user's point of view.
Counting Function Point (FP):
Example:
Given the following values, compute function point when all complexity adjustment factor (CAF) and weighting factors are average.
User Input = 50
User Output = 40
User Inquiries = 35
User Files = 6
External Interface = 4
Explanation:
- Step-1: As complexity adjustment factor is average (given in question), hence,
scale = 3.
F = 14 * 3 = 42
- Step-2:
CAF = 0.65 + ( 0.01 * 42 ) = 1.07
- Step-3: As weighting factors are also average (given in question) hence we will multiply each individual function point to corresponding values in TABLE.
UFP = (50*4) + (40*5) + (35*4) + (6*10) + (4*7) = 628
- Step-4:
Function Point = 628 * 1.07 = 671.96
This is the required answer.
Program to calculate Function Point is as follows :-
Output:
Function Point Analysis :-
Unadjusted Function Points (UFP) : 628
Complexity Adjustment Factor (CAF) : 1.07
Function Points (FP) : 671.96