Which of the following substitutions will compile? (Choose two.)
public class Main { public String name = "main"; public void massage() { int zip = 10017; } }
A, D.
Variable names can begin with an underscore, making Option A correct.
To use an underscore in a numeric literal, it must be between two digits.
Option D is correct.