What will the following Java code output?
class Test {
static final int DATA = 9;
static {
System.out.println(DATA);
}
}
What will the following Java code output?
class Test {
static final int DATA = 9;
static {
System.out.println(DATA);
}
}