publicclass MainClass{
privatestaticint i = 3;
publicstaticvoid main(String[] argv){
System.out.println();
}
}
A. The value of i may not be changed after it is assigned a value.
B. i may only be updated by a static method.
C. i is shared among all instances of MainClass.
D. i may only be accessed within MainClass.