With your team, answer the following question:
Given the following C++ class definitions (see below), does the representation of a bar object contain one b field or two? If two, are both accessible, or only one? Under what circumstances?
class foo { public: int a; char *b; }; class bar : public foo { public: float c; int b; };
Since this is a group assignment, please write the names of each member of your team on your assignment submission along with "Exercise 10b".