Question: In the Snake class, complete the public method definition for setName ( ) with the string parameter customName. Ex: If the input is 1 8

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

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!