Need some clarification about java.util.list. I am using eclipse for development.
I wrote this code
public static void main(String[] asdf){
List<Integer> lst = new ArrayList<Integer>();
for(int i=0;i<10000;i++){
lst.add(i);
}
System.out.println(lst.size());
for(int i=0;i<10000;i++){
if((i%50)==0){
lst.remove(i);
}
}
System.out.println(lst.size());
}
But when i run this code it gives exception
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index: 9850, Size: 9803
at java.util.ArrayList.rangeCheck(ArrayList.java:604)
at java.util.ArrayList.remove(ArrayList.java:445)
at com.ilex.reports.action.rpt.CNSReports.main(CNSReports.java:301)
one more this to note is

Then i did one change in code i-e iterated 2nd loop till 5000 only and it worked fine

Questions are Why giving IndexOutOfBoundsException ?
What is that modCoutn ?
Do any of this thing become reason for memory Leak if yes how to resolve it ?
Thanks in advance.
