Question: with these in java in intellij idea progeram 2. Write the class Section which includes: (23 marks) a) 2 attributes: Section number and ArrayList of
2. Write the class Section which includes: (23 marks) a) 2 attributes: Section number and ArrayList of Students. b) one-arg constructor that accepts (as an argument) the Section number, and create a new empty ArrayList of Students. c) method addStudent that accepts a Student and add it to the ArrayList with a confirmation message. It is not allowed to add the same Student twice and in this case an error message should be displayed. d) method averageGPA which returns the average GPA of regular Students (whose GPA >= 2). It returns O if there are no regular students in the section. e) method saveIntoFile() which accepts a file name. It stores the section number and information of all Students in this file (each Student in a different line). 1. Write the class Student which includes: (12 marks) a) 3 attributes: Student ID (which is unique), name, and GPA. b) a zero-arg constructor and a mutli-arg constructor. c) getter and setter for GPA attribute. d) toString() method which overrides the Object's toString() method. e) equals() method which overrides the object's equals() method. IJ
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
