Respuesta :

Answer:

v.add(42);

Explanation:

A vector is an inbuilt class in Java, which extends AbstractList class of Java. It is a kind of dynamically allocated arrays which does not need size at the time of declaration. It can expand as much as it can. AbstractList class implements the List interface of Java which has some generic functions like add(), sort(), etc.

ACCESS MORE