Question: You have created the following class called Course: public class Course { private String code; private long grade; public String getCode ( ) { return

You have created the following class called Course:
public class Course {
private String code;
private long grade;
public String getCode(){
return code;
}
public void setCode(String code){
this.code = code;
}
public long getGrade(){
return grade;
}
public void setGrade(long grade){
this.grade = grade;
}
}
How would you use aggregation in a Student class to show that a student has one or more courses?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!