1:
2: public class InheritanceDemo
3: {
4: public static void main(String[] args)
5: {
6: Student s = new Student( );
7: s.setName("Warren Peace");
8: s.setStudentNumber(1234);
9: s.writeOutput( );
10: }
11: }