Question: For the following code: public class Person{ String name; String email; int age; public Person(String nm, string eml, int ag){ this. name = nm; this.
For the following code:
public class Person{
String name;
String email;
int age;
public Person(String nm, string eml, int ag){
this. name = nm;
this. email = eml;
this. age = ag;
}
// return true if this person's age is greater than other's age
public boolean older(Person other){
} }
A. What are the instance variables of class Person? ________________________
B. Write code that creates a new Person with name Joe, email address joe31@email.com, and age 30, and stores a reference to this new object in variable p1:
Person p1 = ________________________________________________________;
C. Complete the definition of older above.
D. Write a call to older as defined above which returns true if Person p2 is older than Person p3. Assume variables p2 and p3 already are declared and have appropriate values stored in them.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
