8.31.23.Which of the following suggested changes will allow the method to compile?
public class MainClass { public static void main(String[] argv) {
Boolean flag = new Boolean("true"); if (flag) {
System.out.println("TRUE!");
} else
System.out.println("FALSE!");
}