Answered Questions

  • What is the difference between static variable and instance variable?

    sravani

    • Jun 3rd, 2013

    Those are variables static can be defined where the variable is constant,instance variable can be defined instance of class object

    Isaaq

    • Mar 13th, 2013

    1) An instance variable is one whose memory space is creating each and every time whenever an object is created. 1) Static variables are whose memory space is creating only once when the class is load...