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 instances such as year and GPA
which of these objects will we be able to access if we use p?