Given that the Integer class is in the java.lang package, and given:
1. // insert code here 2. class Main { 3. public static void main(String[] args) { 4. System.out.println(Integer.MAX_VALUE); 5. } 6. }
Which, inserted independently at line 1, compiles?
Choose all that apply.
C and E are correct syntax for static imports.
Line 4 isn't making use of static imports, so the code will also compile with none of the imports.