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?

None of these
ArrayIndexOutOfBoundsException
ClassCastException
IllegalStateException
NumberFormatException

ANSWER DOWNLOAD EXAMIANS APP