Which of these is an incorrect array declaration?
(a) int arr[] = new int[5]
(b) int [] arr = new int[5]
(c) int arr[] = new int[5]
(d) int arr[] = int [5] new
The question was asked during an interview.
My doubt is from Arrays topic in chapter Data Types, Variables and Arrays of Java