Question:
what am i supposed to do in this java assignment i do not get the instructions
2008-08-09 19:01:42 UTC
Now it is time to move to an application that is based on multiple Java classes. The application should ask for the Code (5-100 characters) and then the Title of the course and create a course object. The application should then ask if the user wants to add a student. If the user answers "y", the application should ask for the student name and their grade. The application should create an undergraduate student object and output the students letter grade as confirmation. The application should then ask if the user wants to add another student. Once the user is done adding students, the application should output data for the course including: Course Code, Course Title, Number of Students, Highest Grade, Lowest Grade, Average Grade, Class Average Letter Grade (use the static method). Finally ask if the user wants to add another course and loop through the whole process if they answer yes. Once the user says no, the application should output the number of Student objects existing in the application using the static method specified below. All data input from the user should use the appropriate Validator method for retrieval and validation.
Deliverables

1. 5 Classes
2. Main Application Class: GradebookApp.java
3. Course Class: Course.java
* Variables: code (Ex: CIS 234), title (Ex: Object Oriented Programming)
* Methods: Constructor and get/set methods for each variable
4. Student Class: Student.java
* Variables: name (Ex: John Doe), email (Ex: johndoe@gmail.com), grade (Ex: 85.7)
* Methods: Constructor and get/set methods for each variable
* Additional method for returning an student's letter grade based on grade (no input variables)
o 90 and above = A
o 80 and above = B
o 70 and above = C
o 60 and above = D
o Lower than 60 = F
* Static variable to track the number of student objects created. Use a static method to return the value of the static variable.
* Static method to turn a double input parameter into a letter grade:
o 90 and above = A
o 80 and above = B
o 70 and above = C
o 60 and above = D
o Lower than 60 = F
5. UndergraduateStudent Class: UndergraduateStudent.java (Inherits from Student)
* Variables: major (Ex: Computer Information Systems), level (Ex: Junior)
* Methods: Constructor and get/set methods for each variable
6. Validator Class: Validator.java - Use the validation methods
7. Assignments must be delivered via email as a .zip files containing your 5 .java files.
Three answers:
Rina S
2008-08-10 05:34:05 UTC
You will not get ready made example anywhere.

You may contact a java programmer at website like http://ijug.net/
2016-12-28 17:07:27 UTC
in case you're utilizing an IDE, like NetBeans, elect the challenge in the challenge tree so that's highlighted. good-click -> Refactor -> Rename and choose checkbox for Refactor for utilization. The IDE will then rename the trails, applications and archives for you.
modulo_function
2008-08-09 19:52:35 UTC
That looks like a well-defined assignment. I would guess that you're supposed to do the assignment as part of the class requirements. If you want to pay for a solution, post it to:



http://www.studentoffortune.com/


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...