You are on page 1of 1

public class Test7 implements I{

int k = 1;
static{
k = k * 2;
}
{
k = k * 2;
}
public static void main(String args[]){
Test7 t1 = new Test7();
Test7 t2 = new Test7();
System.out.println(t1.k);
System.out.println(t2.k);
System.out.println(k);
}
}
What will be the output?
0
1
null
Compiler Error
answer -->compile error

You might also like