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, 22.06.2019 08:00
Apex q: what does a low employment rate indicate? a. not many people are earning high salaries b. not many people are going to college c. not many people are renting their homes d. not many people have jobs
Answers: 2
question
Computers and Technology, 22.06.2019 16:30
You have inserted new slides based on a word outline. how do you format these new slides to match the powerpoint presentation formatting? a. select all slides in the presentation and click format on the home tab. b. select the new slides and click reset on the home tab. c. select all slides in the presentation and click reset on the home tab. d. select the new slides and click format on the home tab.
Answers: 2
question
Computers and Technology, 24.06.2019 12:30
Do you think media is stereotype ? and why?
Answers: 1
question
Computers and Technology, 24.06.2019 13:30
Type the correct answer in the box. spell all words correctly. what is the default margin width on all four sides of a document? by default, the document has a margin on all four sides.
Answers: 1
You know the right answer?
//public class ArraySumDriver import java. util. Arrays;

public class ArraySumDriver {<...
Questions
question
Biology, 22.11.2021 23:50
question
Mathematics, 22.11.2021 23:50
question
Mathematics, 22.11.2021 23:50
question
Mathematics, 22.11.2021 23:50
question
Mathematics, 22.11.2021 23:50
question
Mathematics, 22.11.2021 23:50
question
Health, 22.11.2021 23:50
question
World Languages, 22.11.2021 23:50
question
History, 22.11.2021 23:50
Questions on the website: 13722359