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);}  

What is the length of array csGrades at the end of main()? p…

What is the length of array csGrades at the end of main()? public static int addGrade(int[] allGrades, int grade, int listSize) {   allGrades[listSize] = grade;   ++listSize;   return listSize;}public static void main(String[] args) {   final int MAX_GRADES = 100;   int[] courseGrades = new int[MAX_GRADES];   int numGrades = 0;   numGrades = addGrade(csGrades, 74, numGrades);   numGrades = addGrade(csGrades, 74, numGrades);   numGrades = addGrade(csGrades, 74, numGrades);}