I’m trying to learn for my Java class and I’m stuck. Can you help?
Please check the PDF file for more instructions. I couldn’t upload the excel file here so ill send it afterwards.
Please develop one Java program to satisfy the following operations: • Read data records from midData.cvs file into java.util.ArrayList and java.util.LinkedList • Show the memory used by java.util.ArrayList • Show the memory used by java.util.LinkedList • Search through ArrayList to count the number of records that have the Age > 55 and show the CPU time used for this operation • Search through LinkedList to count the number of records that have the Age > 55 and show the CPU time used for this operation.
Please develop one Java program to satisfy the following operations