Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This is the question: These are in Java format. Comments are required on these two Classes (Student.java and StudentDemo.java) all over the coding: Provide proper

This is the question:

image text in transcribed

These are in Java format.

Comments are required on these two Classes (Student.java and StudentDemo.java) all over the coding:

Provide proper comments all over the codings.

---------------------------------------------------------------------------------------------------------------

import java.io.*; import java.util.*; class Student { private String name; private double gradePointAverage; public Student(String n , double a){ name = n; gradePointAverage = a; } public String getName(){ return name; } public double getGradePointAverage(){ return gradePointAverage; } public void setName(String n){ name = n; } public void setGradePointAverage(double a){ gradePointAverage = a; } }

----------------------------------------------------------------------------------------------------------------

import java.util.ArrayList; import java.util.Scanner; public class StudentDemo{ public static ArrayList sort(ArrayList list){ ArrayList list1 = new ArrayList(); for (int i = 0; i list1.get(j).getGradePointAverage()){ index = j; list1.add(j,list.get(i)); break; } } if (index == -1) list1.add(list.get(i)); } return list1; } public static void main(String[] args){ ArrayList list = new ArrayList(); Scanner sc = new Scanner(System.in); while(true){ System.out.print("Enter student name or quit:"); String name = sc.nextLine(); if (name.equals("quit")) break; System.out.print("Enter grade point ave:"); double gpa = Double.parseDouble(sc.nextLine()); Student st = new Student(name,gpa); int index = -1; for (int i = 0; i

xercise In this exercise, you will first create a Student class. A Student has two attributes: name (String) and gradePointAverage (double). The class has a constructor that sets the name and grade point average of the Student. It has appropriate get and set methods. As well, there is a toString method that prints the student's name and their grade point average (highest is 4.0) You will then write a demo program. In the demo program, you will create an ArrayList of Students. You will populate the arraylist with user inputted data. You should store the students alphabetically by name (A to Z) in the arraylist The algorithm to sort is simple. As you read in each name for the Student (say namel), compare it with each name (say name2 of a Student) stored in the arraylist starting from the index 0. As soon (namel.compareTo(name2) >0), that is the right index to put namel. Be sure that you do not cross the arraylist boundary In addition, you will write a method in your demo class that will take in your arraylist of students and return a new arraylist with the students sorted by their grade point average (highest to lowest). You can apply the same sort algorithm that you used for the names See below for a sample output. Enter student name or quit: Bush, Sue Enter grade point ave: 3.4 Enter student name or quit: Neddle, Ned Enter grade point ave: 3.2 Enter student name or quit: Zhang, Bin Enter grade point ave: 3.7 Enter student name or quit: Adda. Ida Enter grade point ave: 3.9 Enter student name or quit: quit Students [ Adda, Ida Grade Point Ave: 3.9, Bush, Sue Grade Point Ave: 3.4, Neddle, Ned Grade Point Ave: 3.2, Zhang, Bin Grade Point Ave: 3.7] Students in order of Grade Point Average [Adda, Ida Grade Point Ave: 3.9 Zhang, Bin Grade Point Ave: 3.7, Bush, Sue Grade Point Ave: 3.4, Neddle, Ned Grade Point Ave: 3.21

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Visual C# And Databases

Authors: Philip Conrod, Lou Tylee

16th Edition

1951077083, 978-1951077082

More Books

Students also viewed these Databases questions

Question

2. What are your challenges in the creative process?

Answered: 1 week ago