What will be the output of the following Java program? class exception_handling { public static void main(String args[]) { try { int a[] = {1, 2,3 , 4, 5}; for (int i = 0; i


What will be the output of the following Java program?



    class exception_handling


    {


        public static void main(String args[])


        {


            try


            {


                int a[] = {1, 2,3 , 4, 5};


                for (int i = 0; i < 7;="">


                    System.out.print(a[i]);


            }


            catch(ArrayIndexOutOfBoundsException e)


            {


         System.out.print("0");


            }


        }


    }


i) 12345


ii) 123450


iii) 1234500


iv) Compilation Error



Jun 03, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here