Consider the following code. Which class is the superclass and which class is the subclass?
public class Animal
{

.
.
.
}
public class Tiger extends Animal
{

.
.
.
}
Group of answer choices
a. Superclass
b. Animal
c. Subclass
d. Tiger

Q&A Education