If the real interest rate is [i]% and the inflation rate is…

If the real interest rate is [i]% and the inflation rate is [f]% what is the market interest rate you should use to find the present worth of a series of cash flows. Submit your final answer as a decimal to 3 decimal places. EX: 0.343 Margin of error +/- 0.001

What is output? public static void changeRainfall(double []…

What is output? public static void changeRainfall(double [] dailyRain){   dailyRain[0] = 0.1;}    public static void main(String args[]){   double [] rainValues = new double[2];   rainValues[0] = 2.9;   rainValues[1] = 1.3;   changeRainfall(rainValues);   System.out.println(rainValues);}