0
/ 1.0
If the class Pug
extends the class Dog
, what can't be said about the classes?
Score: 0 / 2.0
If the class Pug
extends the class Dog
, what can't be said about the classes?
There exists an abstract class Bird.
public abstract class Bird { public Bird() {} public String eat() { return "worms"; } public...