Question: Jump to level 1 In the Customer class, complete the public method definition for setName ( ) with the string parameter customName. Ex: If the

Jump to level 1
In the Customer class, complete the public method definition for setName() with the string parameter customName.
Ex: If the input is 15 Carlos, then the output is:
Age: 15
Name: Carlos
public class Customer {
private int age;
private String name;
public void setAge(int customAge){
}
age = customAge;
public void setName(int customName)
/* Your code goes here */{
name = customName;
}
public int getAge(){
return age;
}
 Jump to level 1 In the Customer class, complete the public

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!