Please tell me what are the instance variables,local varialbes and static variables in the program below
class Imp{
public static void main(String args[]){
Test obj=new Test();
obj.a=10;
obj.b=20;
obj.ini(30);
System.out.println(obj.a +""+obj.b+"" + obj.ret());
}
}
class Test{
int a;
public int b;
private int c=29;
void ini(int h){
c=h;
}
int ret(){
return c;
}
}

