CIS71, Section 4 FIVE MINUTE TEST #4 October 3, 2006 (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 the effect of the statements int x; int y = 2 + (x = 5); (5) 3. x and y are double variables. I want to compare their values. Is it smart to write x == y? if not what should you do? (10) 4. Write a loop to print out all the integers between 3 and 30 (including 3 and 30) that are multiples of 5.