I want to find the position of "4" of the followings array but there are two "4".
public class test{
public static void main(String[] args) {
int[] marks = {1, 2, 3, 4, 4, };
}
}