What does the statement 'vector v(3);' mean?
1) Means v is a vector containing the value 3
2) Means each char in v is initialized to '3'
3) Means vector is a char accessed using v[3]
4) Means v is a vector of 3 chars
5) None of the above