Q. What does it mean when we say a data structure is
dynamic?Its size in memory is fixed.It contains functions for operating on the data it contains.Its behavior changes in response to its environment.It is capable of expanding and contracting as data is added and
removed.Q. If we had a class named MapData, how would we declare its
destructor?delete[] MapData();destructor* MapDataDestructor();NULL_PTR this->MapData();~MapData();Q. When traversing a singly-linked list with a dummy header
node, where do we begin the traversal pointer?At element...