What do push_back() and pop_back() do to a vector?
push_back()
pop_back()
push_back() sorts the vector, and pop_back() clears every element
Both inspect the vector without changing it
push_back() adds an element at the end, and pop_back() removes the last element
Both functions add an element at the front