When the base class and the derived class have a member function with the same name, you must be
more specific which function you want to call (using ___________).
__________, which means if A declares B as its friend it does NOT mean that A can access private data
of B. It only means that B can access all data of A.
If you define a vector v with the default constructor, and define another vector w with a one-argument
constructor to a size of 11, and insert 3 elements into each of these vectors with push_back(), then
the size() member function will return ______ for v and _____ for w.