Question: Combine Two ListsGiven two provided Lists of Integer called firstListand secondList , combine the elements of both Lists into one new List. Instantiate a new

Combine Two ListsGiven two provided Lists of Integer called firstListand secondList, combine the elements of both Lists into one new List.
Instantiate a new List, combinedList.
Put each element from firstList into combinedList.
Put each element from secondListinto combinedList.
Finally, print the elements of combinedList to the console.
import java.io.*;
import java.util.*;
public class CodingQuestion {
public static void main(String[] args){
Scanner in = new Scanner(System.in);
List firstList = new ArrayList<>();
firstList.add(in.nextInt());
firstList.add(in.nextInt());
firstList.add(in.nextInt());
List secondList = new ArrayList<>();
secondList.add(in.nextInt());
secondList.add(in.nextInt());
secondList.add(in.nextInt());
/***** DO NOT CHANGE THE CODE ABOVE THIS LINE *****/
// WRITE YOUR CODE HERE
}// end of main()
STDOUT
Expected STDOUT
[1,2,3,4,5,6]

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 Programming Questions!