public class Car { <br /> private int wheelCount; <br /> private String vin; <br /> public Car(String vin) { <br /> this.vin = vin; <br /> this.wheelCount = 4; <br /> } <br /> public String drive() { <br /> return “zoom-zoom”; <br /> } <br /> public String getInfo() { <br /> return “VIN: “+ vin + “wheels: “+ wheelCount; <br /> } <br /> } <br /> And: <br /> public class MeGo extends Car { <br /> public MeGo(String vin) { <br /> this.wheelCount = 3; <br /> } <br /> } <br /> What two must the programmer do to correct the compilation errors?()
A、 insert a call to this() in the Car constructor
B、 insert a call to this() in the MeGo constructor
C、 insert a call to super() in the MeGo constructor
D、 insert a call to super(vin) in the MeGo constructor
E、 change the wheelCount variable in Car to protected
F、 change line 3 in the MeGo class to super.wheelCount = 3;