How to sort a list in java?
Java provides several ways to sort lists, including using the Collections
class.
Example:
List fruits = Arrays.asList("Apple", "Banana", "Cherry");
Solution:
Sorting the list:
Collections.sort(fruits);
System.out.println(fruits); // Outputs: [Apple, Banana, Cherry]