Consider the following classes. The Vehicle class is a base class. The Car, Truck, and Motorcycle classes inherit from the Vehicle class. The Sedan and SUV classes inherit from the Car class. Which of the following lists all the types of objects that cannot be passed into the function calculate_registration_fee(Car& car)?
Question options:
a) Sedan and SUV objects
b) Sedan, SUV, and Car objects
c) Motorcycle, and Truck objects
d) Motorcycle, Truck, and Vehicle objects