Quiz
What is the output of the following program?
public class TestException {
public static void main(String[] args) {
int[] intArray= new int[10];
boolean result; result = fillArray(intArray);
System.out.println("Result: " + result);
public static boolean fillArray(int[] intArray) {
System.out.println("Exception while accessing the array!");