CIS1057 FIVE MINUTE TEST #4 October 4, 2010 (10) 1. (a) What is a stub? (b) What is a driver? (10) 2. (a) What is the value of the expression (2>3)?1:2 (b) What is printed out by the statements int x; int y = 2 + (x = 5); printf("x = %d, y = %d\n", x, y); (5) 3. Indicate why the following code will not compile int x = 3; while (x < 10) { int y = x; x = x + 2; } printf("x = %d, y = %d\n", x, y); (10) 4. Write a loop to print out all the integers between 3 and 30 (including 3 and 30) that are multiples of 5.