What does the following code print when x is set to 187?if (x < 0) System.out.println("x is negative");else if (x == 0) System.out.println("x is zero");else System.out.println("x is positive");