Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

how we want to write input 2 list in third list

–2 votes
asked Feb 19, 2019 by anonymous

1 Answer

–1 vote
answered Feb 21, 2019 by anonymous
List list1= new ArrayList<>();
List list2= new ArrayList<>();
List list3= new ArrayList<>();
temp.addAll(list1);
temp.addAll(list2);
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...