C++ What does the following statement do? vector<int> v(10); It creates a vector
ID: 3554710 • Letter: C
Question
C++
What does the following statement do?
vector<int> v(10);
It creates a vector object that can store only 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 of its elements to the value 10.
It creates a vector object with a starting size of 10.
It creates a vector object that can store only 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 of its elements to the value 10.
It creates a vector object with a starting size of 10.
Explanation / Answer
It creates a vector object with a starting size of 10.