Question: Task 6 (10 pts.) The program task6.java given below is an incomplete program, The goal of the program is to merge the values of two



Task 6 (10 pts.) The program task6.java given below is an incomplete program, The goal of the program is to merge the values of two String array lists into a single array list. Complete that program, by defining an array list merge function that satisfies the following specs Function array list merge takes two arguments, called A, B, that are array lists of strings The function should return an array list of strings called result, with length equal to the length of A plus the length of B, that contains the values of A, in the order in which they appear in A, followed by the values of B, in the order in which they appear in B. IMPORTANT: You are NOT allowed to modify in any way the main function. The complete program should produce this output: Chicago New York Londor Chicag New York Dallas Paris Dallas a: Berlin Rome Berlin result: Londorn Paris Rome task6.java import java.util.*; public class task6 public static void print_string_array_list(String name, ArrayList
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
