public class Example
{
private int x; // LINE ALPHA
public void method1( int a)
{
int x; // LINE BETA
...
...
...
}
}
What is the intial value of x on LINE ALPHA
What is the initial value of x on LINE BETA
my guess is that they're both ZERO
but I feel like my teacher is tricking me!!!

