What is Abstract and
Virtual Method?
Abstract Method:
Abstract methods are that type of method which is created
only for signature only in base class. Means it is created in base class with
abstract keyword but it has no body implementation.
For example:
Abstract...