Collections It is an utility class present in java.util package. It defines several utility methods for collection implemented class object. Sorting a list public static void sort(List l), to sort the elements of List, according to natural sorting order. In this case compulsory Objects should be Homogeneous & comparable otherwise we will get ClassCastException. The […]