Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a program in Java that performs following tasks: a) Create a class called Person, and add three protected fields pID, pName and pAge to
Write a program in Java that performs following tasks: a) Create a class called Person, and add three protected fields pID, pName and pAge to the class Person. b) Add a method showDetail() to the class Person to display the fields. c) Creates two subclasses Doctor and Engineer for the Person class. d) Use super keyword to pass the parameters from subclass to super class constructor to initialize the super class fields. e) Override the showDetail() method in the subclass Doctor and Engineer to display the fields of super class
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