Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Activity 1 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
Activity Class person, student and teacher Create a new Java project with three classes plus another class to test the logic in your code. The main classes of the program are the following classes: Person Student Professor The Student and Teacher classes inherit from the Person class. The Student class will include a public Study method that will write Im studying on the screen. The Person class must have two public methods Greet and SetAgeint age that will assign the age of the person. The Teacher class will include a public Explain method that will write Im explaining on the screen. Also create a public method ShowAge in the Student class that writes My age is: x years old on the screen. You must create another test class called StudentProfessorTest with a Main method to do the following: Create a new Person and make him say hello Create a new Student, set an age, say hello, and display her age on the screen. Create a new Teacher, set an age, say hello and start the explanation.
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