public class BranchSkeleton { public static void main( String[] args ) { int x = 4; // To check your answers to the first question, // type in the Java code here. // To check your answers to question 5, x = 5; int y = 10; int z = 15; System.out.println(x < 5 && y > x); } }