✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Look at the following snippet: public class Vehicle { public void startEngine() { System.out.println("Engine started"); } } public class Car extends Vehicle { }. If you create a Car object and call myCar.startEngine(), what happens?