subject

//public class ArraySumDriver import java. util. Arrays;

public class ArraySumDriver {
private final static int ARRAY_SIZE = 6;

public static void main(String[] args) {
int index = 0;

Integer[] myArray = new Integer[ARRAY_SIZE];

myArray[index++] = 13;
myArray[index++] = 5;
myArray[index++] = 12;
myArray[index++] = 6;

int sum = sumOfArray(myArray, 3);
System. out. println(sum);

myArray[index++] = 7;
myArray[index++] = 1;

sum = sumOfArray(myArray, 5);
System. out. println(sum);

/* Fabonaicc Series */
for (int i = 0; i < 7; i++) {
int term = fabonaiccSeries(i);
System. out. print(term + " ");
}

}

public static int sumOfArray(Integer[] arr, int num) {
if (num == 0)
return 0;
return sumOfArray(arr, (num - 1)) + arr[num - 1]; // PLACE HOLDER

}

public static int fabonaiccSeries(int num) {
if (num == 0)
return 0;
else if (num == 1)
return 1;
else
return fabonaiccSeries(num - 1) + fabonaiccSeries(num - 2);
}
}

using that program above pls provide like a writeup or like an explanation to explain to someone else

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 17:30
Think about the poem "old ironsides." drag the subject of the poem to the subject box and the theme to the theme box. then decide whether each excerpt from the poem supports the subject or the theme.
Answers: 3
question
Computers and Technology, 22.06.2019 02:50
Which of the following had the greatest influence on opening the internet to the generly public
Answers: 1
question
Computers and Technology, 22.06.2019 10:50
Using least squares fitting, you are to fit the data sets to the following models and solve for the parameters ai , where i is the index of the parameter. the input/output data for the systems are linked in the bblearn site. for each of the systems use matlab to plot the supplied data vs. the model fit on one plot. include your code in the solutions. (a) linear fit "lineardata.mat" y=a1x^3 + a2x^2 + a3x + a4 (b) plant fit "plantdata.mat g(s) = a1/(s + a2)
Answers: 1
question
Computers and Technology, 22.06.2019 15:20
The north and south regions had very diferent economies in the 1800s.
Answers: 1
You know the right answer?
//public class ArraySumDriver import java. util. Arrays;

public class ArraySumDriver {<...
Questions
question
Mathematics, 28.08.2020 23:01
question
Mathematics, 28.08.2020 23:01
question
Mathematics, 28.08.2020 23:01
question
English, 28.08.2020 23:01