Showing posts with the label Java Important Topic for InterviewShow All
Difference between Set and List Interface in JAVA

Difference between Set and List Interface in JAVA List 1.List an Ordered grouping of elements i.e.Maintain order of added Element(add the element in List and print on Consol). 2.List can contain duplicate elements 3.New …

Collection: Sort to list Element, Convert Array  to List, Covertion List to Array, Use of Iterator , Add collection in List

import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.Iterator; import java.util.List; public class List1 { public static void main(String a[]) { List<Integer>…

Load More That is All