What statement should be placed in the blank to complete the const be placed in the blank to complete the constructor for Landveh class Vehicle : def init (self, name) : self.name = name class Landvehicle (Vehicle) : definit_(self, numwheels) : super(). init (“Land Vehicle”) def getWheels (self) : return self. numWheels a) numWheels – numWheel b) c) self._numWheels = numWheels super(). numWheels = numwheels wheels = numWheels d) super(). a init__(numwheels) Show transcribed image text What statement should be placed in the blank to complete the const be placed in the blank to complete the constructor for Landveh class Vehicle : def init (self, name) : self.name = name class Landvehicle (Vehicle) : definit_(self, numwheels) : super(). init (“Land Vehicle”) def getWheels (self) : return self. numWheels a) numWheels – numWheel b) c) self._numWheels = numWheels super(). numWheels = numwheels wheels = numWheels d) super(). a init__(numwheels)
Expert Answer
Answer to What statement should be placed in the blank to complete the const be placed in the blank to complete the constructor fo…