Answered Questions

  • In a multilevel hierarchy how are the constructors are called

    A) TopDownB) BottomUpC) None

    Sunil

    • Aug 31st, 2014

    TOPDOWN is the correct answer. Always base class constructor is called before a sub-class constructor gets called. So, if a class is higher in the class hierarchy, then it will always get called be...

    narendra

    • Aug 14th, 2014

    "c# class Program { public class BaseClass { public BaseClass() { Console.WriteLine("Base class constructor"); ...