Answer:
public class Person {
String name;
int age;
String phoneNumber;
public Person(String name, int age, String phoneNumber){
this.name = name;
this.age = age;
this.phoneNumber = phoneNumber;
}
}
Step-by-step explanation:
The code above is written in Java.
The following should be noted;
(i) To define a class, we begin with the keywords:
public class
This is then followed by the name of the class. In this case, the name is Person. Therefore, we have.
public class Person
(ii) The content of the class definition is contained within the block specified by the curly bracket.
(iii) The class contains instance variables name, age and phoneNumber which are properties specified by the Person class.
The name and phoneNumber are of type String. The age is of type int. We therefore have;
String name;
int age;
String phoneNumber;
(iv) A constructor which initializes the instance variables is also added. The constructor takes in three parameters which are used to respectively initialize the instance variables name, age and phoneNumber.
We therefore have;
public Person(String name, int age, String phoneNumber){
this.name = name;
this.age = age;
this.phoneNumber = phoneNumber;
}
(v) Notice also that a constructor has the same name as the name of the class. In this case, the constructor's name is Person.