Test
Consider the class below.
Will it compile?
If it would, what is the output?
If not, how would you fix it?
public class Test {
public static void main(String[] args) {
if (false) {
System.out.println("world peace");
}
while (false) {
System.out.println("fair and balanced");
}
}
}