Consider the following code. Which class is the superclass and which class is the subclass? public class Animal {} public class Tiger extends Animal {} a) Superclass: Tiger, Subclass: Animal b) Superclass: Animal, Subclass: Tiger c) Both classes are at the same level. d) There is not enough information to determine.