Question: finish the code below: java // ===== Code from file PersonData.java ===== public class PersonData { private int ageYears; private String lastName; public void setName(String

finish the code below: java

// ===== Code from file PersonData.java ===== public class PersonData { private int ageYears; private String lastName;

public void setName(String userName) { lastName = userName; return; }

public void setAge(int numYears) { ageYears = numYears; return; }

// Other parts omitted

public void printAll() { System.out.print("Name: " + lastName); System.out.print(", Age: " + ageYears); return; } } // ===== end =====

// ===== Code from file StudentData.java ===== public class StudentData extends PersonData { private int idNum;

public void setID(int studentId) { idNum = studentId; return; }

public int getID() { return idNum; } } // ===== end =====

// ===== Code from file StudentDerivationFromPerson.java ===== public class StudentDerivationFromPerson { public static void main (String [] args) { StudentData courseStudent = new StudentData();

/* Your solution goes here */

return; } } // ===== end =====

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!