JAVA Exceptions
public class Test{ public static void main(String args[]){ try{ int a = Integer.parseInt("four"); } }}Which exception could be handled by the catch block for above?

ArrayIndexOutOfBoundsException
ClassCastException
NumberFormatException
None of these
IllegalStateException

ANSWER DOWNLOAD EXAMIANS APP