Home /
Expert Answers /
Computer Science /
task-4-class-documentation-create-student-class-represents-a-student-in-a-student-administration-pa370
(Solved):
Task 4: Class Documentation Create Student Class represents a student in a student administration ...
Task 4: Class Documentation Create Student Class represents a student in a student administration system. Student class holds the student enrolment details: student's full name (first and last name), student ID, five-course grades. The program should perform the following: A. Add documentation to Student class should include: - the comment describing the overall purpose and characteristics of the class - version numbers - authors' names B. Prompts a new student with a given name and ID number using Scanner CENG217: Object-Oriented Programming, I Using Java Page 6 of 7 C. Print the login name of the student. The login name is a combination of the first four characters of the student's name and the first three characters of the student's ID number list. D. Display the number of credits for a course taken so far. After recording all five grades, the accumulated credit is calculated when the grade for each course is above 50 .