Person p = new Person();
Student s = new Student();
Person tricky = new Student();
Wont compile, throws exception, or works fine
a) Person y = s;
b) Student y = p;
c) Student y = (Student)p;
d) Student y = tricky;
e) Student y = (Student)tricky;
f) (Faculty)s
g) (Faculty)tricky