class Cat extends Animal { // A Cat "is-a" Animal. /** Constructor * @param _name, the cat's name. */ Cat( String _name ) { this.name = _name; this.sound = "meow"; } String pounce() { return "whoooomf"; } }