What would be the output of the following program ? June 6, 2022 by admin โช Choose the correct option. What would be the output of the following program ? class test { public static void main(String[] args) { for(int i=0;i<=args.length;i++); System.out.println(args[i]); } }A. No outputB. compile time errorC. Array index out of bound exceptionD. None of these Submit Answer