Name: ______________________________ Honor Code Acknowledgment: _______________________ Random Quiz # 3 CPS 08, Spring 1995 January 27, 1995 Problem 1: Diving header (2 pts) True or False: for the program fly.cc to compile, the header file balloon.h must be included. Problem 2: Jack Webb's Problem (2 pts) What value is output as a result of executing the following statements: int prod = 1; int num = 5; int k = 1; while (k <= num){ prod = prod * k; k += 1; } cout << prod << endl;