Suppose there is a class called Student that extends class Person and they both contain a method walk();
Person p = new Student();
();
//explain early binding/static binding in this context.