Consider the following incomplete class:
public class SomeClass
{
public static final int VALUE1 = 30;
public static int value2 = 10;
private int value3 = 5;
private double value4 = 3.14;
public static void someMethod()
{
// implementation not shown
}
public void someOtherMethod()
{
// implementation not shown
}
}
Which of the following is a class constant? (2 points)
Question 1 options:
1) VALUE1
2) value2
3) value3
4) value4
5) someOtherMethod