// Assume getters and setters are present
public class TestVehicle {
public static void main(String[] args) {
}
Car car = new Car("Sedan", 4);
System.out.println(car.getType());
What will be the result of compiling and running the 'TestVehicle` class?
a.
It will print "Sedan"
O b. Runtime error because the Car class does not have a default constructor
c. It will print "Vehicle"
d. Compilation error due to the getType() method being undefined in the Car class