What is the testing time? Total Testing Time: Number of Questions Total time: 3 hours Section I (Multiple Choice): 40 questions 1 hour, 15 minutes Section II (Free Response): 4 or 5 questions 1 hour, 45 minutes Q1. Consider the following functions. void Myst(int a, int & b) { a *= b; b = 2 + a; } void Test() { int u = 2; int v = 3; Myst(u, v); cout << u << " " << v << endl; } What is printed as a result of the call Test() ? (A) 2 3 (B) 2 8 (C) 6 3 (D) 6 8 (E) 8 3 Q2. Consider the following function. void Mystery(int n) { if (n >= 2){ Mystery(n / 3); } cout << n << " "; } Which of the following is output as a result of the call Mystery(27) ? (A) 0 27 (B) 1 3 9 27 (C) 3 9 27 (D) 27 0 (E) 27 9 3 Use the following mathematical expression for Questions Q3 and Qx: 5 - 4 + 9 * 12 / 3 - 10 Q3. Using the standard order of operations, which of the following would be the result of the mathematical expression given above? (Assume integer math.) a. 13 b. 27 c. 30 d. -57 e. -10 ... Q4. Which of the following is an example of correct usage of the insertion (output) and extraction (input) op-erators? I. cout << myVar << yourVar << endl; II. cout << endl; III. cin >> myVar >> endl; a. I only b. II only c. III only d. I and II only e. II and III only