What will be the output of the following program?
public class Final
{
public static void main(String[] args)
{
final int result;
result = 20;
int assign = process(result);
result = assign;
System.out.println(result);
}
static int process(int a)
{
return a + 5;
}
}