CIS71, Section 4 FIVE MINUTE TEST #11 November 28, 2006 (10) 1. Declare a structure Student to represent information about a student: first name, last name, student number, grade (a real number) (10) 2. (a) We call a function with a single integer parameter. What will be passed in a function call? (b) Now we pass an integer array. What will be passed in a function call? (c) Now we pass a structure. What will be passed in a function call? (20) 3. int insert(int n, int a[n], int level, int v) is a function that, given an integer array a with n positions of which the first level positions are occupied in sorted order, inserts v in a so that it remains sorted. It returns 0 if v was already in a, 1 otherwise.