9. 47. 2. The asList() method of the Arrays class will create an object
import java.util.Arrays; import java.util.Vector;
public class MainClass { public static void main(String args[]) {
Integer[] array = {1,2,3,4,5};
Vector<Integer> v = new Vector<Integer>(Arrays.asList(array));