Name: _____________________________ Honor Code Acknowledgment: ______________________ Random Quiz # 1 CPS 100, Fall 1995 Due: September 7, 1995 Problem 1 : Casting Call (2 pts) In the sequence of statements: Bigint big; big = 5 + 3; how many constructors are called (and why)? Problem 2: rec.list.linked (2 pts) Describe what list represents after the call list = Build(7); where Build is given below. struct Node { int info; Node * next; }; ListNode * Build(int num) { if (0 == num) { return NULL; } else { ListNode * temp = new Node; temp->info = num; temp->next = Build(num - 1); return temp; } }