Given the following class hierarchy, identify whether the me…
Given the following class hierarchy, identify whether the method introduce is overloaded, overridden, or neither by the subclass: public class Person { public void introduce(String name, int height) { /* implemented */ }}public class Student extends Person { public void introduce(String name, int height, String major) { /* implemented */ }}
Read Details