What will be the output of the following program? import jav…
What will be the output of the following program? import java.util.*; public class Test { public static void main(String[] args) { Set set = new LinkedHashSet(); set.add(“Banana”); set.add(“Apple”); set.add(“Cherry”); System.out.println(set); } }
Read Details