Answer a is correct because,
static {
SIZE = 10;
MIN_VALUE = 10.3f;
}
is a static variable initializer block. This block gets executed when the class is loaded.
----------------
The following block initializes the instance variables when the instance is created. ( so,u cannot use this block to initialize a static final variable)
{
SIZE = 10;
MIN_VALUE = 10.3f;
}
[This message has been edited by jon c (edited September 29, 2000).]