Answered Questions

  • Explain about Overloading and Overriding

    Aleem Khowaja

    • Oct 27th, 2011

    Overloading: In overloading we can use same name of function but different argument, it is used for perform task for different purpose..... Example: void Add(int a, int b){ } void Add(int ...

    Timothy

    • Oct 24th, 2011

    The main difference between overloading and overriding is that in overloading we can use same function name with different parameters for multiple times for different tasks with on a class. and ov...