1) Insert the missing code in the following code fragment. This fragment is intended to call the Vessel class's method. public class Vessel { . . . public void set VesselClass(double vesselLength) { . . . } } public class SpeedBoat extends Vessel { . . . public SpeedBoat() { _______________; } } a) SpeedBoat.vesselLength(26.0); b) Vessel.vesselLength(26.0); c) this.vesselLength(26.0); d) vesselLength(26.0);



Answer :

Other Questions