IT 117: Intermediate to Scripting
Answers to Class 22 Ungraded Quiz

  1. What do you call the feature of Python that allows you to construct a new class based on another class?
    inheritance
  2. If you want to use a class representing one thing as the basis for a class representing another thing, what must the relationship between the two things be?
    an is a relationship
  3. If one class is used to create another class, what do you call the new class?
    a subclass
  4. If one class is used to create another class, what do you call the original class?
    a superclass