Which of the following can replace the comment so this code outputs 100? (Choose two.)
public class Main { // INSERT CODE public static void main(String[] math) { System.out.println(max - min); } }
E, F.
A static method is not allowed to access instance variables without an instance of the class, making Options E and F correct.
Only max is initialized to 100 in Option E.
Since min doesn't have a value specified, it gets the default value, which is 0.