Question: public static void append(ArrayList a, ArrayList b) 1/----------Start below here. To do: approximate lines of code - 3 11 append the integer elements in ArrayList

 public static void append(ArrayList a, ArrayList b) 1/----------Start below here. To

public static void append(ArrayList a, ArrayList b) 1/----------Start below here. To do: approximate lines of code - 3 11 append the integer elements in ArrayList b to the end of ArrayListo a 1/ Hint: use a for loop that goes through each element of ArrayList b, don't forget the class ArrayList has a size() method that 1/ Hint: google java ArrayList to see all the methods you can use. Use the add() method // the size() method tells you how many elements are stored in the array list for (int i = 0; i

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!