1) Declare a vector of Points with 100 elements. Solution: vector points(100); 2) Declare a vector of strings (size not known yet). Solution: vector strings; 3) Output the entire vector of strings from part 2, each string on its own line (assume it has been populated with values already) Solution: for (int i = 0; i < strings.size(); i++) { cout << strings[i] << endl; }