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
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here