Difference between revisions of "CSC111 Final Exam 2015b"
Line 117: | Line 117: | ||
>>> | >>> | ||
Enter a list: [ 1, 2, [3, 4], 5, [6, 7], [8,[9,10] ], (11, 12) ] | Enter a list: [ 1, 2, [3, 4], 5, [6, 7], [8,[9,10] ], (11, 12) ] | ||
+ | |||
L = [1, 2, [3, 4], 5, [6, 7], [8, [9, 10]], (11, 12)] | L = [1, 2, [3, 4], 5, [6, 7], [8, [9, 10]], (11, 12)] | ||
+ | |||
1 2 3 4 5 6 7 8 9 10 11 12 | 1 2 3 4 5 6 7 8 9 10 11 12 | ||
>>> | >>> | ||
Line 127: | Line 129: | ||
==Additional Information== | ==Additional Information== | ||
<br /> | <br /> | ||
− | * | + | * Your program will be tested only with lists that contain only integers and possibly other lists. A list or its sublists will always include at least 1 item, which will be an integer, or a sublist. In other words, lists and sublists will never be empty. |
− | + | ||
<br /> | <br /> | ||
==Restrictions== | ==Restrictions== | ||
Line 149: | Line 151: | ||
==Submission== | ==Submission== | ||
<br /> | <br /> | ||
− | * Submit your program to the Final PB 2 section on Moodle. The automatic evaluation of the program is turned off for this exam. Make sure it works well with all kinds of lists! | + | * Submit your program to the '''Final PB 2''' section on Moodle. The automatic evaluation of the program is turned off for this exam. Make sure it works well with all kinds of lists! |
<br /> | <br /> | ||
<!-- ============================================================= --> | <!-- ============================================================= --> |
Revision as of 09:49, 14 December 2015
--D. Thiebaut (talk) 21:22, 6 December 2015 (EST)
This exam is a take-home exam given under the rules of the Smith College Honor-Code. Please make sure you read it and understand it.
The exam is open book, open notes, and open Web.
You have to do the work individually. No pair-programming allowed! You cannot seek help from anybody for this exam. The TAs will not hold hours, and will not be allowed to answer questions relating to the final exam, Python, or to the class material. All questions relating to this Final should be directed to your instructor, and posted on Piazza. Posts on piazza should not contain any code. Only questions meant to clarify the exam are allowed. Questions on piazza should only be answered by the instructor. No debugging-related questions will be answered.
The deadline for the exam is Friday, Dec. 22, at 4:00 p.m.' While you are given 8 days on this exam, the programming should take you no more than a day, two at most, so organize your time well. No extensions will be granted beyond the due date and time.