Question: comments are instructions thank you, automatic thumbs up public abstract class Person { private String name; private String address; private short age; // constructor that

comments are instructions thank you, automatic thumbs up
comments are instructions thank you, automatic thumbs up public abstract class Person
\{ private String name; private String address; private short age; // constructor
that takes only two paras public Person(String name, short age) \{ super();

public abstract class Person \{ private String name; private String address; private short age; // constructor that takes only two paras public Person(String name, short age) \{ super(); this.name = name; this.age = age; public String getName() return name; \} public void setName(String name) \{ \} this.name = name; public abstract String getAddress(); public abstract void setAddress(String address); \} 7 public class Student extends Person [ 1 8 // ToDo 1: Make this class a child of Person 9 10 11 12 13 14 15 16 / 16

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!