9. 47. 10. Passing the object to remove to either of the remove() or removeElement() methods
public boolean remove(Object element) public boolean removeElement(Object element)
import java.util.Vector;
public class MainClass { public static void main(String args[]) {
Vector v = new Vector(5); for (int i = 0; i < 10; i++) {
v.add(0,i);
}
System.out.println(v.capacity());
System.out.println(v);