Top Topics in our Forum';
**Interactive Parabola. Click and drag focus & Directrix to see equation and formula adjust

A+    A−    B  
Algebra
Games
Geometry
Interactive
Trigonometry
Forum




AddThis Social Bookmark Button

Array List Loop

AP Prep

2004 Question 1
INCORRECT asnwer

Correct while loop
int i = 0;
while(i < myList.size())
if(myList.

Motivation for Iterators
Iterator it = myList.iterator();
while(it.hasNext() ){
if(it.next().length() == len)
it.remove();

}

Top
AddThis Social Bookmark Button