You are asked to develop a program for a shopping application, and you are given the following information:
Which definition of the Toy class adds a valid layer of abstraction to the class hierarchy?
Given the following class declarations:
* public abstract class Animal
* public interface Hunter
* public class Cat extends Animal implements Hunter
* public class Tiger extends Cat
Which answer fails to compile?