subject

I need some help with the following Java assignment. This assignment requires the use of Apache NetBeans. Create a Student class (you can simply modify your class from the previous unit’s exercise) that will be used as your data record. The class contains instance variables for: student ID number, integer last name, string first name, string grade point average, double Build an application that will accept user input for your data record from the screen. Your program will create 3 files. The first file will contain records for honors students whose grade point average is at least 3.6 or higher. The second file will contain records for students in good standing with grade point averages between 2.0 and 3.5. The third file will contain records for students receiving probation with grade point averages below 2.0. Name your program SortStudents. java. Make sure there are several records in each file for later processing when you run your program. Create a second application that uses the files created above. Process each file in turn, beginning with the honors students, followed by the students in good standing and ending with the students receiving probation. Name your program StudentReport. java. Format your student report as follows: High Honors Students ID Number Name GPA 12345 Bill Johnson 3.8 23456 Judy Kirk 3.7 . . . Students in Good Standing ID Number Name GPA 34567 Suzy Clarkson 3.2 45678 Bob Wilson 2.9 56789 Mike Nice 2.5 . . . Students Receiving Probation ID Number Name GPA 67890 Diana Long 1.6 78901 Linda Willows 1.2 . . . Finally, create a third application named SearchStudentFiles. java that will search the 3 files for a given student’s name. If the student is found, display the search results on the screen: ID Number Name GPA 67890 Diana Long 1.6 If the student is not found, display a message indicating so. Allow the user to perform multiple searches on the files, indicating they are done by entering a sentinel value as input.
This assignment is very confusing to me, and would greatly appreciate some help. This is due on Saturday night.

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 01:00
)a grad student comes up with the following algorithm to sort an array a[1..n] that works by first sorting the first 2/3rds of the array, then sorting the last 2/3rds of the (resulting) array, and finally sorting the first 2/3rds of the new array. 1: function g-sort(a, n) . takes as input an array of n numbers, a[1..n] 2: g-sort-recurse(a, 1, n) 3: end function 4: function g-sort-recurse(a, `, u) 5: if u ⒠` ≤ 0 then 6: return . 1 or fewer elements already sorted 7: else if u ⒠` = 1 then . 2 elements 8: if a[u] < a[`] then . swap values 9: temp ↠a[u] 10: a[u] ↠a[`] 11: a[`] ↠temp 12: end if 13: else . 3 or more elements 14: size ↠u ⒠` + 1 15: twothirds ↠d(2 ◠size)/3e 16: g-sort-recurse(a, `, ` + twothirds ⒠1) 17: g-sort-recurse(a, u ⒠twothirds + 1, u) 18: g-sort-recurse(a, `, ` + twothirds ⒠1) 19: end if 20: end function first (5 pts), prove that the algorithm correctly sorts the numbers in the array (in increasing order). after showing that it correctly sorts 1 and 2 element intervals, you may make the (incorrect) assumption that the number of elements being passed to g-sort-recurse is always a multiple of 3 to simplify the notation (and drop the floors/ceilings).
Answers: 3
question
Computers and Technology, 22.06.2019 18:00
Write a method named addall that could be placed inside the hashintset class. this method accepts another hashintset as a parameter and adds all elements from that set into the current set, if they are not already present. for example, if a set s1 contains [1, 2, 3] and another set s2 contains [1, 7, 3, 9], the call of s1.addall(s2); would change s1 to store [1, 2, 3, 7, 9] in some order. you are allowed to call methods on your set and/or the other set. do not modify the set passed in. this method should run in o(n) time where n is the number of elements in the parameter set passed in.
Answers: 2
question
Computers and Technology, 22.06.2019 21:30
Nathan wants to create multiple worksheet containing common formatting styles for his team members. which file extension him to save these worksheets? nathan to create multiple worksheets with common styles. he needs to save them with the extension.
Answers: 1
question
Computers and Technology, 23.06.2019 14:30
The option enables you to modify a slide element in most presentation applications.
Answers: 2
You know the right answer?
I need some help with the following Java assignment. This assignment requires the use of Apache NetB...
Questions
question
Mathematics, 06.11.2020 21:10
question
Mathematics, 06.11.2020 21:10
question
World Languages, 06.11.2020 21:10
question
Mathematics, 06.11.2020 21:10
question
Biology, 06.11.2020 21:10
question
Mathematics, 06.11.2020 21:10
question
Mathematics, 06.11.2020 21:10
Questions on the website: 13722363