C Sharp (C#) - Inheritance
You have a base class
Vehicle with a virtual method Start(). You want to create a derived class Car that calls the base Start() method and then prints "Car started". Which code correctly uses base to achieve this?