When you define an abstract method, how do you use it in a derived class?
Abstract methods cannot be used in derived classes.
In your derived class, override the method.
In your derived class, declare the method as virtual.
In your derived class, overload the method.