CIS1057, Section 9 FIVE MINUTE TEST #2 September 14, 2010 (10) 1. x is an int variable. How many bytes are usually used to store the value of x? and what possible values can x take? (10) 2. What is the value of the expression 2 + 5 / 3 * 3 < 6 - 3 / 4 (5) 3. What is printed out by the statements int k; for (k = 1; k < 8; k = k+2) printf("%d\n", k*k); (5) 4. What is printed out by if (x < 2) printf("1\n"); else if (x > 6) printf("2\n"); else printf("3\n"); assuming that x has value 2? (10) 5. Write statements to print out the values 1,3,5,7,9.