Sonoma State University
Department of Computer Science
CS-460: Programming Languages
Exercise 10b

Objective:

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;
};

Submitting your solution:

Since this is a group assignment, please write the names of each member of your team on your assignment submission along with "Exercise 10b".

Exercise 10b Rubric

CRITERIA RATINGS POINTS
Problem 1 Proficient
10 points

Solution provides answers to the following questions: Does the representation of a bar object contain one b field or two? If two, are both accessible, or only one? Under what circumstances?
Below Expectation
0 points

No solution submitted.
10 points
Total points: 10