Spaces:
Running
Running
File size: 354 Bytes
1c73c76 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
Decide which attribute belongs to which class
according to the class name AND the name and type of the attributes.
class Student
- int startingyear
- String studentid
- String email
- int studypointTotal
class Course
- String identifier
- String code
- String teacher
class CourseCompletion
- int completionDone
- String completiondate
- int grade
|