Lets say there is a class called Student that extends a class called Person and we write:
Student s = .....;
Person p = (Person)s;
Is this up casting or down casting? will it work?