Ruby - Variables and Data Types
Given this class hierarchy:
class Vehicle; end class Car < Vehicle; end class Truck < Vehicle; end obj = Car.newWhich expression returns true only if
obj is exactly a Car, not a subclass?