Types of Variables
Instance:- If the value of a variable is changing from an object to an object then it is called an instance variable
eg:-
class Employee {
void getEmployee () {
int x = 10; //not an instance variable
}
static {
int x = 1...
manmohan0.hashnode.dev1 min read