This test contains 10 questions based on Java . Each question answered correctly awards you 1 point and each incorrect answer has a penalty of -0.25 points, no points are deducted for unattempted answers. Select Test Type Timed Test UnTimed Test You Get +1 for each correct answer and -0.25 for each incorrect answer Time Left - minutes :seconds What will be the output of the program? public class Test { public static void main(String[] args) { int x = 0; assert (x > 0) ? "assertion failed" : "assertion passed" ; System.out.println("finished"); } } finished Compiliation fails. An AssertionError is thrown and finished is output. An AssertionError is thrown with the message "assertion failed." B Compilation Fails. You can't use the Assert statement in a similar way to the ternary operator. Don't confuse. Which of thes...