Which option corresponds to the value of x that outputs 'Junior'?if (x < 56) System.out.print("Sophomore");else if (x > 56) System.out.print("Senior");else System.out.print("Junior");