Question: In Java please. Consider the following method: ===================================================== 1) public static void funcArray(int[] a) { for (int i = 1; i < a.length; i++) {

In Java please.

Consider the following method:

=====================================================

1) public static void funcArray(int[] a) {

for (int i = 1; i < a.length; i++) {

a[i] = i + a[i - 1] - a[i];

}

}

=====================================================

Compute the contents of following arrays a1-3:

int[] a1 = {7, 3}; funcArray(a1);

int[] a2 = {4, 3, 6}; funcArray(a2);

int[] a3 = {2, 4, -1, 6, -2, 8}; funcArray(a3);

---------------------------------------------------

2)

public static int threeHeads() {

// Counts coin tosses till we get heads 3x in a row.

Random rand = new Random();

int flip = 1;

int heads = 0;

int count = 0;

// Point A

while (heads < 3) {

// Point B

flip = rand.nextInt(2); // flip coin

if (flip == 0) { // heads

heads++;

// Point C

} else { // tails

// Point D

heads = 0;

}

count++;

}

// Point E

return count;

}

=====================================================

Write a Unit test harness for the five checkpoints A-E.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!