1public class A
2{
3 static int m=100;//static variable
4 void method()
5 {
6 int n=90;//local variable
7 }
8 public static void main(String args[])
9 {
10 int data=50;//instance variable
11 }
12}//end of class