A class car and its subclass bmw each have a method run(), which was written by the developer as part of the class definition. i
f carobj refers to an object of type bmw, what will carobj.run(); do? the run() method defined in bmw will be called. the compiler will complain that run() has been defined twice. the run() method defined in car will be called.