Polymorphism in Java means
- Acheck_circle
Object can be referred to by superclass type; the actual method called depends on the dynamic type
- B
Method overloading
- C
Same name; different bodies
- D
Multiple inheritance allowed
Explanation
Dynamic dispatch: <code>Animal a = new Dog(); a.speak();</code> calls Dog.speak().