COP 3804 Intermediate Java - project 3 : pgm3b_5COP3804java2 Professor: Michael Robinson e-mail : michael.robinson@cs.fiu.edu - At the beginning of your program add the following: /********************************************************************* Author : Your Name Course : Java section. Example Java-1, Java-2, Java-3, or Java-4 Professor : Michael Robinson Program # : Program Purpose/Description { A brief description of the program } Due Date : MM/DD/YYYY Certification: I hereby certify that this work is my own and none of it is the work of any other person. ..........{ your signature }.......... *********************************************************************/ - Program must be named: yourLastNameFirstLetterOfYourFirstNamePgm3.java ex: robinsonMpgm3.java - Make sure the program is properly documented and aligned uniformally, according to our "JAVA Programming Rules", discussed in class and located at: http://users.cis.fiu.edu/~mrobi002/includes/JAVA_programmingRules I will take points off if you do not follow the programming instructions. Purpose of this program: ======================== Master the design and implementation of classes using inheritance What is Inheritance? external classes --------------------------------------------------------------------- 1) Worth 2 points Write a super class program called lastNameFirstInitialSuperPgm3.java containing: a - methodOne that accepts one int and can not be inherited displaying the the int value received. b - methodTwo that accepts two strings and displays I am super methodTwo c - methodThree that accepts nothing and displays I am super methodThree 2) Worth 1 point Write a sub-class named lastNameFirstInitialSub1.java that inherets all methods from your super class 3) Worth 1 point Write a sub-class program called lastNameFirstInitialSub2.java containing all inheritable methods from your super class overloading methodTwo by displaying "Hello I am sub class Two" 4) Worth 2 points Write a DRIVER class using all methods in all classes from questions 1, 2 and 3 Program submission: - ZIP source code for all four programs above, from question 1, 2, 3 and 4 - Upload your zipped source code to your Moodle account - Turn in your signed source code on printed and stappled paper, for each of the four questions above