Correct Answer : Option (C) : Before the catch block of Base class
Explanation : C++ asks the programmer to place the catch block of derived class before a catch block of the base class, otherwise derived catch block will never be executed.