Suppose x = 1, y = -1, and z = 1. What is the output of the…

Suppose x = 1, y = -1, and z = 1. What is the output of the following statement? (Please indent the statement correctly first.) if (x > 0)   if (y > 0)  System.out.println(“x > 0 and y > 0”); else if (z > 0)  System.out.println(“x < 0 and z > 0″);