Assume we have a parent class Person and a child class Student both with a method called getID().
Person p = new Person(); int id = p.getID();
Which getID() method will run in this situation?
There are no hints for this question