Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started