What is the exact output of the following Java code? Write t…
What is the exact output of the following Java code? Write the complete line printed int score = 74; int bonus = 3; int attempts = 2; String result = score + bonus * attempts >= 80 ?(attempts > 2 ? “Pass with review”: “Pass”) :(score % 2 == 0 ? “Fail-even”: “Fail-odd”); System.out.println(result + “: ” + (score / 10 + bonus));