Question: public class Vehicle { protected String vehicleName; public void setName ( String name ) { vehicleName = name; } public String toString ( ) {

public class Vehicle {
protected String vehicleName;
public void setName(String name){
vehicleName = name;
}
public String toString(){
return vehicleName;
}
}
public class Boat extends Vehicle {
private int numEngines;
public Boat(int num){
numEngines = num;
}
public String toString(){
return super.toString()+""+ numEngines;
}
}
Boat fastBoat = new Boat(2);
fastBoat.setName("Firebird");
System.out.println(fastBoat);
Group of answer choices
Syntax error
Firebird 2
Boat@f35a442b
Firebird

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 Programming Questions!