What will be the output?

public class Test{
static
{
int a = 8;
}
public static void main(String args[])
{
new Test().call();
}
void call(){
this.a++;
System.out.print(this.a);
}
}

Posted on by