Vidyalelo
Java Programming · Q52

Exceptions

Programming · Java Programming · question 52

Q52

Given the code. What is the result when this program is executed? public class Test static int x[]; static x[0] = 1; public static void main(String args[])

A.
ArrayIndexOutOfBoundsException is thrown
B.
ExceptionInInitializerError is thrown
Answer
C.
IllegalStateException is thrown
D.
StackOverflowException is thrown
E.
None of these

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board