Let's say there is a class called Student that extends Person and we write:
Student s = new Student();
Person p = s;
//Person has instances such as name and ID
//Student has year and GPA
what objects will we be able to access if we use s?