What gets printed when the following program is compiled and run. protected class example {public static void main(String args[]) {String test = "abc";test = test + test;System.out.println(test);}}
The program does not compile because statement "test = test + test" is illegal.
The program prints "abc"
The program prints "abcabc"
The class does not compile because the top level class cannot be protected.