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 setNameString name
vehicleName name;
public String toString
return vehicleName;
public class Boat extends Vehicle
private int numEngines;
public Boatint num
numEngines num;
public String toString
return super.toString numEngines;
Boat fastBoat new Boat;
fastBoat.setNameFirebird;
System.out.printlnfastBoat;
Group of answer choices
Syntax error
Firebird
Boat@fab
Firebird
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
