1. Write a Java program to sort a numeric array and a string array. import java.util.Arrays; public class NumericArray { public static void main(String[] args) { int[] a = {5, 4, 3, 2, 1, 6, 7, 8, 9}; String[] s = {"Java", "Angul...
codewithvivekanand.com3 min read
No responses yet.