Ruby - Inheritance
Consider this code:
class Vehicle; end class Car < Vehicle; end class SportsCar < Car; end obj = SportsCar.new puts obj.is_a?(Car) && obj.kind_of?(Vehicle)What is the output?
