COP 3804 Intermediate Java - COP3804pgm3a_6Summer2021 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 }.......... *********************************************************************/ -------------------------------------------------------------------------------- Worth 10 Points - 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: ======================== 1) Worth 4 points Write a super class program called lastNameFirstNameInitialSuperPgm3 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 2 point Write a sub-class named lastNameFirstInitialSub1 that inherets all methods from your super class in question 1 ( lastNameFirstNameInitialSuperPgm3 ) 3) Worth 2 points Write a sub-class program called lastNameFirstInitialSub2 containing all inheritable methods from your super class in question 1 ( lastNameFirstNameInitialSuperPgm3 ) overloading methodTwo by displaying "Hello I am sub class Two" 4) Worth 2 points Write a DRIVER class (with a main method) named lastNameFirstNameInitialPgm3 using all methods in all classes from questions 1, 2 and 3 This should be the results: --------------------------- C:\Users\michael\Downloads>java robinsonMPgm3 1) Displaying the methods in the SuperClass I am super methodTwo I am super methodThree 2) Displaying the methods in the robinsonMSub1 Class I am super methodTwo I am super methodThree 3) Displaying the methods in the robinsonMSub2 Class Hello I am sub class Two I am super methodThree Program submission: - ZIP source code for all four programs above, from question 1, 2, and 3 - Upload your zipped source code to your Canvas account