
identify instance variable ,class variables and local variable in the following example
class Ati
{
static int no;
String center;
int testMethod()
{
float x,y;
x=y+10;
return x;
}
}

In the above code,
x and y are local variables.
no is class variable
center is instance variable.