you can call a method from base class though
it is overridden by another method using base
keyword.
when you create a instance of derived class,
you may call the constructor of base classes
with the keyword base.
following rules are applied in base class access-
-within instance methods
-within constructor
-instace property accessor
you can't use the base keyword in the static
methods generating errors.