Is it possible to avoid ArrayIndexOutOfBoundsException in this case ??
package com;
public class Hi {
    public static void main(String args[]) {
        String[] myFirstStringArray = new String[] { "String 1", "String 2",
                "String 3" };
        if (myFirstStringArray[3] != null) {
            System.out.println("Present");
        } else {
            System.out.println("Not Present");
        }
    }
}
 
     
     
    