Arrays class in Java
Arrays class of the java.util package contains several static methods that we can use to fill, sort, search, etc in arrays. Commonly uses API of this class :- public static String toString(int[] a) : String representation consists of a list of the array’s elements, enclosed in square brackets (“[]”). Adjacent [...]