Well done!

You have completed Inheritance Quiz!

Quiz Question 1 of 5

class Orange(Fruit):
    has_pulp = True

    def squeeze(self):
        return has_pulp

Orange().squeeze() will return True.

Choose the correct answer below:

Skip Quiz Review Video