Question: I need to make this program using Netbeans:).. . 1. Implement Name class, Address class, Student class, Faculty class, and Course class as shown the


I need to make this program using Netbeans:)..
. 1. Implement Name class, Address class, Student class, Faculty class, and Course class as shown the UMLs bellow. 2. Implement the Test Course class as on Page 378 using the classes created on question 1. . 3. Change the implementation TestCourse class implemented on question 2 to accept the user input to add Students, Faculties, and Courses. Classes UML Student Name -firstName: String -lastName: String +Name(firstName: String, lastName: String) +getFirstName(): String +getLastName(): String -id: int -name: Name -address: Address -courses: Coursel) +Studentid:int, name: Name) +getid(): int +getName(): Name +changeName(name: Name): void +setAddress(address: Address): void +getAddress(): Address +addCourse(course: Course): void +getCourses(): Courses [] Course -courseName: String -students: Student -numberOfStudents: int +Course(courseName: String) +getCourseName(): String +addStudent(student: Student): void + dropStudent(student: Student): void +getStudents(): Student +getNumberOfStudents(): int Classes UML Address -street Number: int Address there Classes UML Address -street Number: int -streetName: String -city: String -state: String -zipcode: int +Address() setAddress(streetNumber: int, streetName: Stirng, city: String, state: String, zipcode: int): void +getStreetName(): int +getStreetName(): String +getCity(): String +getState(): String +getZipCode(): int Classes UML Faculty -name: Name -address: Address -courses: Coursel) +Facult(name: Name) +getName(): Name +changeName(name: Name): void +setAddress(address: Address): void +getAddress(): Address +addCourse(course: Course): void +getCourses(): Courses[]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
