The following code will not compile n i'm a little stuck as to why -
public class Question8{
static final int ROW_SIZE = 10;
static final int COL_SIZE;
public static void main(String[] args){
COL_SIZE = 10;
ROW_SIZE = ROW_SIZE + 10;
}
}