What does the following statement do?
vector v(10);
◦ It creates a vector object that can only store values of 10 or less.
◦ It creates a vector object and initializes the first element with the value 10.
◦ It creates a vector object and initializes all its elements to the value 10.
◦ It creates a vector object with a starting size of 10.