Submitted Questions

  • what is the difference between encapsulation & abstraction?

    Avinash Chaturvedi(Avi)

    • Aug 3rd, 2006

    Abastaction : The Process in which we identify all the relevent attributes and methods related to a perticular entity and finally bind these attribute and methods into a single unit known as class is ...

    Deepthik

    • Apr 13th, 2006

                 Encapsulation is binding the data & methods together, so that only particular methods should access the data.   &...

  • What is the difference between hiding & overriding ?

    SrinivaS

    • May 30th, 2006

    Hi,Variables can also be overridden, it?s known as shadowing or hiding. But, member variable references are resolved at compile-time. So at the runtime, if the class of the object referred by a parent...

    Deepthik

    • Apr 26th, 2006

                Hiding is similar to the private variables which are hidded by the other classes even in the same package, i.e giving restricted access to...