Given: 8. public class test { 9. public static void main(String [] a) { 10. assert a.length == 1; 11. } 12. } Which two will produce an AssertionError? (Choose two.)
java test
java -ea test
java test file1
java -ea test file1
java -ea test file1 file2
java -ea:test test file1