Which of the following is the correct syntax for declaring an array in Java?
int[] myArray = new int[5];
int myArray[] = new int[5];
int[] myArray;

Software Engineering Exercises are loading ...