Answered step by step
Verified Expert Solution
Question
1 Approved Answer
In this application we are going to deal with composition. Create a class named Professor and another named Course. Besides these classes we will have
In this application we are going to deal with composition. Create a class named Professor and another named Course. Besides these classes we will have a class named Main for placing the main method. Professor class should contain variables id (string) and name (string) alongside their respective setters/getters. Course class should contain variables id (string), name (string) and professor (Professor) alongside setters/getters. Course also contains a toString method, which prints the course id, course name and professor information. In main, create a professor first. Ex: A123 Alihan Hadimlioglu Then create a course. Ex: CE343 Object-Oriented Programming Languages (These will be taken from the user and you must handle exceptions). Then assign the professor you previously created as the course professor variable. Finally, display the course information
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