INSTANCE VARIABLE
- Instance variables declared inside class but not inside methods.
- They live inside the object they belong to.
int size ;
}
LOCAL VARIABLE
- Local variables are declared inside methods including method parameters.
- They are temporary and live long as method in the stack.
{
int i=x+3;
Boolean b= true;
}


