Vehicle aVehicle = new Auto();aVehicle.moveForward(200);Assume that the Auto class inherits from the Vehicle class, and both classes have an implementation of the moveForward method with the same set of parameters and the same return type. What determines which class's moveForward method is to be executed?A. the actual object type. B. the variable's type.C. the hierarchy of the classes. D. it is not possible to determine which method is executed.