Java Questions - (Has 2 Parts). Based on each code, which answer out of the choices "A, B, C, D, E" is correct. Each question has one correct answer. Thank you. Part 1 - The following code will cause a(n) ___ exception. class Sample { public static void main(String[] args) { int x = 0; int y = 10; int z = y/x; } } A. ArithmeticException B. ArrayIndexOutOfBoundsException C. StringIndexOutOfBoundsException D. NullPointerException E. ClassNotFoundException Part 2 - A programmer carelessly assigned a negative value as an index of an array. Which type of exception will be raised during execution? A. An IndexOutOfBoundsException is thrown. B. A NumberFormatException is thrown. C. The first slot of the array is used. D. This is an Error, so the program immediately terminates no matter what. E. The last slot of the array is used.
Java Questions - (Has 2 Parts). Based on each code, which answer out of the choices "A, B, C, D, E" is correct. Each question has one correct answer. Thank you.
Part 1 - The following code will cause a(n) ___ exception.
class Sample
{
public static void main(String[] args)
{
int x = 0;
int y = 10;
int z = y/x;
}
}
A. ArithmeticException
B. ArrayIndexOutOfBoundsException
C. StringIndexOutOfBoundsException
D. NullPointerException
E. ClassNotFoundException
Part 2 - A programmer carelessly assigned a negative value as an index of an array. Which type of exception will be raised during execution?
A. An IndexOutOfBoundsException is thrown.
B. A NumberFormatException is thrown.
C. The first slot of the array is used.
D. This is an Error, so the program immediately terminates no matter what.
E. The last slot of the array is used.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps