COP 3804 Intermediate Java - project 4 : pgm4c_5_COP3804java2 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: yourLastNameFirstLetterOfYourFirstNamePgm4.java ex: robinsonMpgm4.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 creation and implementation of: LinkedList Stacks Queue File BufferedWriter( new FileWriter( “yourLastNameFirstInitialBottomUp” ) --------------------------------------------------------------------- 1) Worth 6 points Write a program named yourLastNameFirstInitialPgm4.java where your main method will call the following methods: a) Worth 2 points Method name = theLinkedList - create a list of Object data type, that will add "your last name", "java" "FIU", 4.00 - Display using printf all items in your list - Remove second and third item from the list - Display using printf all items in your list b) Worth 1 point Method name = theStacks - add to your stack first, second, third, fourth - remove and display from your stack all items c) Worth 1 point Method name = theQueue - add to your queue first, second, third, fourth - remove and display from your stack all items d) Worth 2 points Method name = theFile Using the java file system BufferedWriter( new FileWriter( “yourLastNameFirstInitialBottomUp” ) write this program file from the last record to the first record in a new file named yourLastNameFirstInitialBottomUp