Question: Question 8 ( 1 point ) Saved What is output? public class Vehicle { protected String vehicleName; public void setName ( String name ) {

Question 8(1 point)
Saved
What is output?
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);
Question 8 options:
Firebird 2
Firebird
Boat@f35a442b
Syntax error

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!