Exam I Answer Key 1. D 2. A 3. A 4. C 5. B 6. C 7. B 8. A 9. B 10. A 11. C 12. B 13. B 14. D 15. C 16. C 17. See code below 2 pt int i; 4 pt for (i = 1; i <=7; i++) { 4 pt printf("*******\n"); } 18. See code below 2 pt i = LOWER; 3 pt while (i <= UPPER) { 2 pt if (i % 5 == 0) { printf("%d is a multiple of 5\n", i); } else { printf("%d is not\n", i); } 3 pt i++; }