Problem:
Question: Write Student class with name, ID and marks as the data members. Please add necessary constructors and methods (like get methods for data members, toString method to show name, id and marks) to this class.
In main function, create a Arraylist of Student. Add 6 Students objects to this list. Then, Print all the students in the list and find the average marks.
Please describe your code step by step.