Question: Consider the following Java code. public class Person { private String name; private int age; public void setName(String n) { name = n; } public

Consider the following Java code. public class Person { private String name; private int age; public void setName(String n) { name = n; } public void getName() { return name; } public void setAge(int a) { age = a; } public void getAge() { return age; } public Person() { name = ""; age = 0; } public Person(String name, int age) { name = n; age = 0; } } public class Student extends Person { . . . } Which of these constructors and their implementations are valid?

a.

public Student() { super("", 0); System.out.println("No student information specified"); }

b.

public Student(String name, int age) { super(name, age); System.out.printf("Name: %s, Age: %d ", name, age); }

c.

public Student(int age, String name) { super(name, age); System.out.printf("Name: %s, Age: %d ", name, age); }

d.

public Student(int age, String name, int height) { super(); super.setName(name); super.setAge(age); System.out.printf("Name: %s, Age: %d, Height: %d ", name, age, height); }

e.

All of these above.

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!