C Sharp (C#) - Inheritance
You have a base class
Vehicle with a virtual method Start(). You want to create a class Car that overrides Start() but prevents any further subclass from overriding it. How should you declare Start() in Car?